advapi32: LookupAccountNameW removed redundant NULL check (Coverity).

This commit is contained in:
Marcus Meissner 2009-02-09 08:52:42 +01:00 committed by Alexandre Julliard
parent b859d2052b
commit 398b5cfef6
1 changed files with 1 additions and 1 deletions

View File

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