crypt32: Remove unneeded address-of operator from array name

Andrew Talbot andrew.talbot at talbotville.com
Wed Jul 9 14:36:45 CDT 2008


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

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-patches mailing list