Andrew Talbot : crypt32: Remove unneeded address-of operator from array name.

Alexandre Julliard julliard at winehq.org
Thu Jul 10 08:58:25 CDT 2008


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

Author: Andrew Talbot <andrew.talbot at talbotville.com>
Date:   Wed Jul  9 20:36:45 2008 +0100

crypt32: Remove unneeded address-of operator from array name.

---

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

diff --git a/dlls/crypt32/decode.c b/dlls/crypt32/decode.c
index 47b0ba6..3ac3ebb 100644
--- a/dlls/crypt32/decode.c
+++ b/dlls/crypt32/decode.c
@@ -3147,7 +3147,7 @@ static BOOL CRYPT_AsnDecodeIntInternal(const BYTE *pbEncoded, DWORD cbEncoded,
     DWORD size = sizeof(buf);
 
     blob->pbData = buf + sizeof(CRYPT_INTEGER_BLOB);
-    ret = CRYPT_AsnDecodeIntegerInternal(pbEncoded, cbEncoded, 0, &buf,
+    ret = CRYPT_AsnDecodeIntegerInternal(pbEncoded, cbEncoded, 0, buf,
      &size, pcbDecoded);
     if (ret)
     {




More information about the wine-cvs mailing list