Module: wine Branch: master Commit: 7998cd46290fdc298d87bad1c56f7f7219a695d0 URL: http://source.winehq.org/git/wine.git/?a=commit;h=7998cd46290fdc298d87bad1c5...
Author: Andrew Talbot andrew.talbot@talbotville.com Date: Tue Nov 1 22:51:38 2011 +0000
rsaenh: Remove unneeded address-of operator from array name.
---
dlls/rsaenh/rsaenh.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
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;