components/openssl/openssl-1.0.1/patches/41_uninitialized_ctx.patch
branchs11u3-sru
changeset 7163 ee09edbd5876
parent 7159 59b406bc4a3a
child 7164 b2abbab8e6d5
--- a/components/openssl/openssl-1.0.1/patches/41_uninitialized_ctx.patch	Wed Oct 12 06:26:22 2016 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-#
-# This was developed in house. Upstream notified.
-#
---- openssl-1.0.1m/crypto/evp/evp_enc.c.orig	Tue Jun  2 13:18:15 2015
-+++ openssl-1.0.1m/crypto/evp/evp_enc.c	Tue Jun  2 13:19:19 2015
-@@ -179,6 +179,7 @@
-                 EVPerr(EVP_F_EVP_CIPHERINIT_EX, ERR_R_MALLOC_FAILURE);
-                 return 0;
-             }
-+	    (void) memset(ctx->cipher_data, 0, ctx->cipher->ctx_size);
-         } else {
-             ctx->cipher_data = NULL;
-         }