Commit f3aab0c0 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

user32: Remove useless NULL checks (Coverity).

parent bde872f9
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment