mirror of
https://github.com/reactos/reactos.git
synced 2025-01-01 03:54:02 +00:00
[SHELL32] CCopyToMenu/CMoveToMenu: Check if this_ is NULL
This commit is contained in:
parent
0360abb796
commit
2c4beeca8e
2 changed files with 6 additions and 0 deletions
|
@ -101,6 +101,9 @@ BrowseCallbackProc(HWND hwnd, UINT uMsg, LPARAM lParam, LPARAM lpData)
|
|||
}
|
||||
case BFFM_SELCHANGED:
|
||||
{
|
||||
if (!this_)
|
||||
break;
|
||||
|
||||
WCHAR szPath[MAX_PATH];
|
||||
LPCITEMIDLIST pidl = reinterpret_cast<LPCITEMIDLIST>(lParam);
|
||||
|
||||
|
|
|
@ -100,6 +100,9 @@ BrowseCallbackProc(HWND hwnd, UINT uMsg, LPARAM lParam, LPARAM lpData)
|
|||
}
|
||||
case BFFM_SELCHANGED:
|
||||
{
|
||||
if (!this_)
|
||||
break;
|
||||
|
||||
WCHAR szPath[MAX_PATH];
|
||||
LPCITEMIDLIST pidl = reinterpret_cast<LPCITEMIDLIST>(lParam);
|
||||
|
||||
|
|
Loading…
Reference in a new issue