[PATCH] dlls/crypt32: use correct integral type

Eric Pouech eric.pouech at gmail.com
Thu Jan 27 03:18:01 CST 2022


Signed-off-by: Eric Pouech <eric.pouech at gmail.com>

---
 dlls/crypt32/protectdata.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/crypt32/protectdata.c b/dlls/crypt32/protectdata.c
index 3d9447dfdee..b23f1f02117 100644
--- a/dlls/crypt32/protectdata.c
+++ b/dlls/crypt32/protectdata.c
@@ -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;




More information about the wine-devel mailing list