Hello,

The number of NULLS in the initialization of ssl_cipher_methods in
ssl/ssl_ciph.c does not match the count SSL_ENC_NUM_IDX in 1.1.0c.

Attached patch for a fix.

Regards,
Leonard.

-- 
mount -t life -o ro /dev/dna /genetic/research

--- openssl-1.1.0c/ssl/ssl_ciph.c.000	2016-11-10 15:03:46.000000000 +0100
+++ openssl-1.1.0c/ssl/ssl_ciph.c	2017-01-08 16:28:41.710219565 +0100
@@ -103,7 +103,7 @@ static const ssl_cipher_table ssl_cipher
 
 static const EVP_CIPHER *ssl_cipher_methods[SSL_ENC_NUM_IDX] = {
     NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
-    NULL, NULL
+    NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL
 };
 
 #define SSL_COMP_NULL_IDX       0
-- 
openssl-dev mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-dev

Reply via email to