rsaenh: Remove unneeded address-of operator from array name

Andrew Talbot andrew.talbot at talbotville.com
Tue Nov 1 17:51:38 CDT 2011


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

diff --git a/dlls/rsaenh/rsaenh.c b/dlls/rsaenh/rsaenh.c
index fc04579..fe5ff3a 100644
--- a/dlls/rsaenh/rsaenh.c
+++ b/dlls/rsaenh/rsaenh.c
@@ -2546,7 +2546,7 @@ static BOOL crypt_export_plaintext_key(CRYPTKEY *pCryptKey, BYTE *pbData,
         pBlobHeader->aiKeyAlg = pCryptKey->aiAlgid;
 
         *pKeyLen = pCryptKey->dwKeyLen;
-        memcpy(pbKey, &pCryptKey->abKeyValue, pCryptKey->dwKeyLen);
+        memcpy(pbKey, pCryptKey->abKeyValue, pCryptKey->dwKeyLen);
     }
     *pdwDataLen = dwDataLen;
     return TRUE;



More information about the wine-patches mailing list