Ensure memcpy is not called with NULL and 0 args in x509 module

This commit is contained in:
Andres Amaya Garcia 2017-12-06 09:39:23 +00:00
parent f1ee63562a
commit cb5123fa86

View file

@ -294,7 +294,9 @@ int mbedtls_x509_crl_parse_der( mbedtls_x509_crl *chain,
/*
* Copy raw DER-encoded CRL
*/
if( buflen != 0 && ( ( p = mbedtls_calloc( 1, buflen ) ) == NULL ) )
if( buflen == 0 )
return( MBEDTLS_ERR_X509_INVALID_FORMAT );
else if( ( p = mbedtls_calloc( 1, buflen ) ) == NULL )
return( MBEDTLS_ERR_X509_ALLOC_FAILED );
memcpy( p, buf, buflen );