From 0771a8e36ac5842586a210e69fc3148640dd85a7 Mon Sep 17 00:00:00 2001 From: philsmd Date: Tue, 14 Feb 2017 11:10:33 +0100 Subject: [PATCH] fix: we should initialize the aes_key in seven_zip_hook_func () --- src/interface.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interface.c b/src/interface.c index eae8fb865..a9879c9a0 100644 --- a/src/interface.c +++ b/src/interface.c @@ -14124,7 +14124,7 @@ void seven_zip_hook_func (hc_device_param_t *device_param, hashes_t *hashes, con // init AES - AES_KEY aes_key; + AES_KEY aes_key = { 0 }; AES_set_decrypt_key (ukey, 256, &aes_key); AES_KEY aes_key_copied;