From e15c2f1b47785e903c3882da3bfef30f248dc20e Mon Sep 17 00:00:00 2001 From: Andre Heinecke Date: Tue, 27 Jan 2015 14:56:14 +0100 Subject: [PATCH] Add fix for Polarssl CVE-2015-1182 --- src/polarssl-1-CVE20151182.patch | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/polarssl-1-CVE20151182.patch diff --git a/src/polarssl-1-CVE20151182.patch b/src/polarssl-1-CVE20151182.patch new file mode 100644 index 00000000..a5db4543 --- /dev/null +++ b/src/polarssl-1-CVE20151182.patch @@ -0,0 +1,20 @@ +This file is part of MXE. +See index.html for further information. + +Security fix for CVE-2015-1182 from: +https://polarssl.org/tech-updates/security-advisories/polarssl-security-advisory-2014-04 + + +diff --git a/library/asn1parse.c b/library/asn1parse.c +index a3a2b56..e2117bf 100644 +--- a/library/asn1parse.c ++++ b/library/asn1parse.c +@@ -278,6 +278,8 @@ int asn1_get_sequence_of( unsigned char **p, + if( cur->next == NULL ) + return( POLARSSL_ERR_ASN1_MALLOC_FAILED ); + ++ memset( cur->next, 0, sizeof( asn1_sequence ) ); ++ + cur = cur->next; + } + }