mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-23 08:01:12 +00:00
Change formatting of allocation check in x509_crl
This commit is contained in:
parent
fb023c18da
commit
af77213b72
|
@ -296,7 +296,9 @@ int mbedtls_x509_crl_parse_der( mbedtls_x509_crl *chain,
|
|||
*/
|
||||
if( buflen == 0 )
|
||||
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 );
|
||||
|
||||
memcpy( p, buf, buflen );
|
||||
|
|
Loading…
Reference in a new issue