mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 21:32:56 +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;
|
*theResult = TRUE;
|
||||||
return S_OK;
|
return S_OK;
|
||||||
|
|
||||||
|
default:
|
||||||
|
*theResult = 0L;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
return S_OK;
|
return S_OK;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue