comctl32: Removed array NULL check (Coverity).
This commit is contained in:
parent
0bd55f9df1
commit
2cd225b793
|
@ -2051,7 +2051,7 @@ TOOLTIPS_OnWMGetText (const TOOLTIPS_INFO *infoPtr, WPARAM size, LPWSTR pszText)
|
|||
{
|
||||
LRESULT res;
|
||||
|
||||
if(!infoPtr->szTipText || !size)
|
||||
if(!size)
|
||||
return 0;
|
||||
|
||||
res = min(strlenW(infoPtr->szTipText)+1, size);
|
||||
|
|
Loading…
Reference in New Issue