From e402260db42e62a9e7408d954fe0f28aefe8008e Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Wed, 16 Dec 2009 18:19:15 +0100 Subject: [PATCH] crypt32: Remove an unneeded assignment. --- dlls/crypt32/chain.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/crypt32/chain.c b/dlls/crypt32/chain.c index e5ad7dcf40c..0d1a2f05ec3 100644 --- a/dlls/crypt32/chain.c +++ b/dlls/crypt32/chain.c @@ -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 {