mirror of
https://github.com/zlib-ng/minizip-ng
synced 2025-03-28 21:13:18 +00:00
Fixed return value from mz_crypt_sha_update when using SHA224.
This commit is contained in:
parent
27f2ff225f
commit
7981b63742
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user