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:
parent
d55aad928b
commit
f88507a4fd
|
@ -403,7 +403,7 @@ BOOL unserialize(const DATA_BLOB *pSerial, struct protect_data_t *pInfo)
|
|||
}
|
||||
|
||||
/* 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");
|
||||
return FALSE;
|
||||
|
@ -432,7 +432,7 @@ BOOL unserialize(const DATA_BLOB *pSerial, struct protect_data_t *pInfo)
|
|||
}
|
||||
|
||||
/* 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");
|
||||
return FALSE;
|
||||
|
|
Loading…
Reference in New Issue