user32: Remove superfluous "not NULL" check of the atom variable.

This commit is contained in:
Michael Stefaniuc 2010-05-19 00:50:14 +02:00 committed by Alexandre Julliard
parent 17789c1636
commit be6ef9158d
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ BOOL WINAPI DdePostAdvise(DWORD idInst, HSZ hszTopic, HSZ hszItem)
return TRUE;
theError:
if (atom) GlobalDeleteAtom(atom);
GlobalDeleteAtom(atom);
return FALSE;
}