mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-29 11:41:15 +03:00
Change formatting of allocation check in x509_crl
This commit is contained in:
@ -296,7 +296,9 @@ int mbedtls_x509_crl_parse_der( mbedtls_x509_crl *chain,
|
|||||||
*/
|
*/
|
||||||
if( buflen == 0 )
|
if( buflen == 0 )
|
||||||
return( MBEDTLS_ERR_X509_INVALID_FORMAT );
|
return( MBEDTLS_ERR_X509_INVALID_FORMAT );
|
||||||
else if( ( p = mbedtls_calloc( 1, buflen ) ) == NULL )
|
|
||||||
|
p = mbedtls_calloc( 1, buflen );
|
||||||
|
if( p == NULL )
|
||||||
return( MBEDTLS_ERR_X509_ALLOC_FAILED );
|
return( MBEDTLS_ERR_X509_ALLOC_FAILED );
|
||||||
|
|
||||||
memcpy( p, buf, buflen );
|
memcpy( p, buf, buflen );
|
||||||
|
Reference in New Issue
Block a user