Fixed return value from mz_crypt_sha_update when using SHA224.

This commit is contained in:
Nathan Moinvaziri 2022-02-22 15:02:49 -08:00
parent 27f2ff225f
commit 7981b63742

View File

@ -267,7 +267,7 @@ int32_t mz_crypt_sha_update(void *handle, const void *buf, int32_t size) {
if (sha->sha224 == NULL)
return MZ_PARAM_ERROR;
mz_crypt_sha224_update(sha->sha224, buf, size);
return MZ_OK;
return size;
}
if (sha->hash == 0)