mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 08:55:19 +00:00
[SHELL32]
- Initialize CNewMenu::m_pidlFolder. Fixes crash in com_apitest:shell32 CORE-10115 #resolve svn path=/trunk/; revision=69048
This commit is contained in:
parent
4ea30042a6
commit
68f6155242
1 changed files with 9 additions and 8 deletions
|
@ -24,15 +24,16 @@
|
|||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(shell);
|
||||
|
||||
CNewMenu::CNewMenu()
|
||||
CNewMenu::CNewMenu() :
|
||||
m_pidlFolder(NULL),
|
||||
m_wszPath(NULL),
|
||||
m_pItems(NULL),
|
||||
m_pLinkItem(NULL),
|
||||
m_pSite(NULL),
|
||||
m_hiconFolder(NULL),
|
||||
m_hiconLink(NULL),
|
||||
m_idCmdFirst(0)
|
||||
{
|
||||
m_wszPath = NULL;
|
||||
m_pItems = NULL;
|
||||
m_pLinkItem = NULL;
|
||||
m_pSite = NULL;
|
||||
m_hiconFolder = NULL;
|
||||
m_hiconLink = NULL;
|
||||
m_idCmdFirst = 0;
|
||||
}
|
||||
|
||||
CNewMenu::~CNewMenu()
|
||||
|
|
Loading…
Reference in a new issue