Fixed casting warning on windows.

This commit is contained in:
Nathan Moinvaziri 2019-03-07 16:31:04 -08:00
parent 9c70a4838c
commit cf822aab24

View File

@ -514,7 +514,7 @@ int32_t mz_crypt_hmac_copy(void *src_handle, void *target_handle)
if (target->hash)
{
CryptDestroyHash(target->hash);
target->hash = NULL;
target->hash = 0;
}
result = CryptDuplicateHash(source->hash, NULL, 0, &target->hash);