user32: Remove useless NULL checks (Coverity).

This commit is contained in:
Marcus Meissner 2011-03-15 02:21:56 +01:00 committed by Alexandre Julliard
parent bde872f95e
commit f3aab0c0e9
1 changed files with 1 additions and 1 deletions

View File

@ -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);