mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[SHELL32] Fix uninitialized variable usage.
This fixes log spam about NM_CUSTOMDRAW not being handled
This commit is contained in:
parent
f5bbd57d73
commit
22e58e68aa
1 changed files with 4 additions and 0 deletions
|
@ -258,6 +258,10 @@ HRESULT CMenuToolbarBase::OnCustomDraw(LPNMTBCUSTOMDRAW cdraw, LRESULT * theResu
|
|||
}
|
||||
*theResult = TRUE;
|
||||
return S_OK;
|
||||
|
||||
default:
|
||||
*theResult = 0L;
|
||||
break;
|
||||
}
|
||||
return S_OK;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue