user32: Remove useless NULL checks (Coverity).
This commit is contained in:
parent
bde872f95e
commit
f3aab0c0e9
|
@ -72,7 +72,7 @@ BOOL WINAPI DdePostAdvise(DWORD idInst, HSZ hszTopic, HSZ hszItem)
|
|||
|
||||
pInstance = WDML_GetInstance(idInst);
|
||||
|
||||
if (pInstance == NULL || pInstance->links == NULL)
|
||||
if (pInstance == NULL)
|
||||
return FALSE;
|
||||
|
||||
atom = WDML_MakeAtomFromHsz(hszItem);
|
||||
|
|
Loading…
Reference in New Issue