[PATCH] crypt32 - chain.c : Remove an unneeded assignment.

Amine Khaldi amine48rz at gmail.com
Wed Dec 16 11:19:15 CST 2009


---
 dlls/crypt32/chain.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/crypt32/chain.c b/dlls/crypt32/chain.c
index e5ad7dc..0d1a2f0 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
     {
-- 
1.6.5.1.1367.gcd48


--------------020601070905080504050609--



More information about the wine-patches mailing list