Merge pull request #614 from Intevation/polarssl-cve-2015-1182

Add fix for Polarssl CVE-2015-1182
This commit is contained in:
Timothy Gu 2015-01-27 08:08:04 -08:00
commit d44b78cc7e
1 changed files with 20 additions and 0 deletions

View File

@ -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;
}
}