whitespace fix

This commit is contained in:
Mazumdar, Tahsin M 2019-03-04 14:25:41 -05:00
parent 8fb80888f3
commit 53b5e2f8c3

View File

@ -511,12 +511,12 @@ int32_t mz_crypt_hmac_copy(void *src_handle, void *target_handle)
int32_t result = 0;
int32_t err = MZ_OK;
if (target->hash)
{
CryptDestroyHash(target->hash);
target->hash = NULL;
}
if (target->hash)
{
CryptDestroyHash(target->hash);
target->hash = NULL;
}
result = CryptDuplicateHash(source->hash, NULL, 0, &target->hash);
if (!result)