commit | 6a8ca33fa571802db5b10d5c9041e7df1ec2ca25 | [log] [tgz] |
---|---|---|
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Thu May 28 09:33:39 2015 +0200 |
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Thu May 28 16:25:05 2015 +0200 |
tree | 61134104bccb2e947c78bd858f01ae41875e3fe3 | |
parent | 160e3843608e66f16c764cea1832a0a40f11fbc9 [diff] [blame] |
Rename ERR_xxx_MALLOC_FAILED to ..._ALLOC_FAILED
diff --git a/library/asn1parse.c b/library/asn1parse.c index 563e9a7..e2c0702 100644 --- a/library/asn1parse.c +++ b/library/asn1parse.c
@@ -273,7 +273,7 @@ cur->next = mbedtls_calloc( 1, sizeof( mbedtls_asn1_sequence ) ); if( cur->next == NULL ) - return( MBEDTLS_ERR_ASN1_MALLOC_FAILED ); + return( MBEDTLS_ERR_ASN1_ALLOC_FAILED ); cur = cur->next; }