crypt32: Remove an unneeded assignment.

This commit is contained in:
Amine Khaldi 2009-12-16 18:19:15 +01:00 committed by Alexandre Julliard
parent 5cc277c677
commit e402260db4
1 changed files with 1 additions and 1 deletions

View File

@ -619,7 +619,7 @@ static BOOL rfc822_name_matches(LPCWSTR constraint, LPCWSTR name,
*trustErrorStatus |= CERT_TRUST_INVALID_NAME_CONSTRAINTS;
else if (!name)
; /* no match */
else if ((at = strchrW(constraint, '@')))
else if (strchrW(constraint, '@'))
match = !lstrcmpiW(constraint, name);
else
{