crypt32: Use correct integral type.

Signed-off-by: Eric Pouech <eric.pouech@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Eric Pouech 2022-01-27 10:18:01 +01:00 committed by Alexandre Julliard
parent d55aad928b
commit f88507a4fd
1 changed files with 2 additions and 2 deletions

View File

@ -403,7 +403,7 @@ BOOL unserialize(const DATA_BLOB *pSerial, struct protect_data_t *pInfo)
} }
/* cipher_alg */ /* cipher_alg */
if (!unserialize_dword(ptr,&index,size,&pInfo->cipher_alg)) if (!unserialize_dword(ptr,&index,size,(DWORD*)&pInfo->cipher_alg))
{ {
ERR("reading cipher_alg failed!\n"); ERR("reading cipher_alg failed!\n");
return FALSE; return FALSE;
@ -432,7 +432,7 @@ BOOL unserialize(const DATA_BLOB *pSerial, struct protect_data_t *pInfo)
} }
/* hash_alg */ /* hash_alg */
if (!unserialize_dword(ptr,&index,size,&pInfo->hash_alg)) if (!unserialize_dword(ptr,&index,size,(DWORD*)&pInfo->hash_alg))
{ {
ERR("reading hash_alg failed!\n"); ERR("reading hash_alg failed!\n");
return FALSE; return FALSE;