crypt32(3/7): Fix typo

Juan Lang juan.lang at gmail.com
Tue Aug 7 17:01:33 CDT 2007


--Juan
-------------- next part --------------
From b378db4eaebae684445e3fda812c8e013df2e5a0 Mon Sep 17 00:00:00 2001
From: Juan Lang <juanlang at juan.corp.google.com>
Date: Tue, 7 Aug 2007 09:19:41 -0700
Subject: [PATCH] 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(PCRYP
     if (cb1 == cb2)
     {
         if (cb1)
-            ret = !memcmp(pInt1->pbData, pInt1->pbData, cb1);
+            ret = !memcmp(pInt1->pbData, pInt2->pbData, cb1);
         else
             ret = TRUE;
     }
-- 
1.4.1


More information about the wine-patches mailing list