Fix buffer overflow in module_hash_encode() in hash-mode 13600

pull/2310/head
Jens Steube 4 years ago
parent c9fdb34698
commit 42e7fa1303

@ -364,7 +364,7 @@ int module_hash_encode (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSE
const u32 data_len = zip2->data_len;
char data_tmp[8192 + 1] = { 0 };
char data_tmp[16384 + 1] = { 0 };
for (u32 i = 0, j = 0; i < data_len; i += 1, j += 2)
{

Loading…
Cancel
Save