mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 15:36:42 +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
|
@ -256,7 +256,8 @@ HRESULT STDMETHODCALLTYPE CAddressEditBox::OnWinEvent(
|
|||
{
|
||||
LPNMHDR hdr;
|
||||
|
||||
*theResult = 0;
|
||||
if (theResult)
|
||||
*theResult = 0;
|
||||
|
||||
switch (uMsg)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue