From 1e4c66f9532f177e0946e4d13eea3f09df00058a Mon Sep 17 00:00:00 2001 From: FdaSilvaYY Date: Thu, 14 Jul 2016 10:36:55 +0200 Subject: [PATCH] explicit init Reviewed-by: Matt Caswell Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/1301) --- crypto/engine/eng_openssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/engine/eng_openssl.c b/crypto/engine/eng_openssl.c index 7e28604955..9208f7eafc 100644 --- a/crypto/engine/eng_openssl.c +++ b/crypto/engine/eng_openssl.c @@ -264,7 +264,7 @@ static void test_r4_40_cipher_destroy(void) } static int test_cipher_nids(const int **nids) { - static int cipher_nids[4] = { 0, 0, 0 }; + static int cipher_nids[4] = { 0, 0, 0, 0 }; static int pos = 0; static int init = 0; -- 2.25.1