mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 02:26:33 +00:00
[BROWSEUI][SHELL32] Treat OnWinEvent's result parameter as optional. CORE-14443
Windows's explorer can call it with NULL.
This commit is contained in:
parent
84a9284a3f
commit
0aed0fd167
8 changed files with 44 additions and 19 deletions
|
@ -290,7 +290,8 @@ HRESULT STDMETHODCALLTYPE CAddressBand::OnWinEvent(
|
|||
HRESULT hResult;
|
||||
RECT rect;
|
||||
|
||||
*theResult = 0;
|
||||
if (theResult)
|
||||
*theResult = 0;
|
||||
|
||||
switch (uMsg)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue