Juan Lang : crypt32: Fix typo.

Alexandre Julliard julliard at wine.codeweavers.com
Wed Aug 8 08:59:29 CDT 2007


Module: wine
Branch: master
Commit: c91e591a95d15c09b994d2d7f25798d7e3e0942e
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=c91e591a95d15c09b994d2d7f25798d7e3e0942e

Author: Juan Lang <juan.lang at gmail.com>
Date:   Tue Aug  7 09:19:41 2007 -0700

crypt32: Fix typo.

---

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

diff --git a/dlls/crypt32/cert.c b/dlls/crypt32/cert.c
index cc9de4b..c9f31e3 100644
--- a/dlls/crypt32/cert.c
+++ b/dlls/crypt32/cert.c
@@ -767,7 +767,7 @@ BOOL WINAPI CertCompareIntegerBlob(PCRYPT_INTEGER_BLOB pInt1,
     if (cb1 == cb2)
     {
         if (cb1)
-            ret = !memcmp(pInt1->pbData, pInt1->pbData, cb1);
+            ret = !memcmp(pInt1->pbData, pInt2->pbData, cb1);
         else
             ret = TRUE;
     }




More information about the wine-cvs mailing list