mirror of
https://github.com/reactos/wine.git
synced 2025-02-04 19:18:00 +00:00
rsaenh: Remove unneeded address-of operator from array name.
This commit is contained in:
parent
cf5a68e9bd
commit
7998cd4629
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user