advapi32: Removed redundant NULL check.

This commit is contained in:
Marcus Meissner 2008-10-30 23:49:24 +01:00 committed by Alexandre Julliard
parent 28e990c13d
commit 508ef4ce20

View File

@ -2661,7 +2661,7 @@ BOOL WINAPI LookupAccountNameW( LPCWSTR lpSystemName, LPCWSTR lpAccountName, PSI
nameLen += 1;
ret = FALSE;
}
else if (ReferencedDomainName && domainName)
else if (ReferencedDomainName)
{
strcpyW(ReferencedDomainName, domainName);
}