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…
Reference in New Issue