1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-29 11:41:15 +03:00

Use both applicable error codes and a proper coding style

This commit is contained in:
Sanne Wouda
2017-08-30 21:10:42 +01:00
committed by Gilles Peskine
parent b2b29d5259
commit 7b2e85dd7c

View File

@ -182,7 +182,8 @@ static int pk_get_ecparams( unsigned char **p, const unsigned char *end,
int ret;
if ( end - *p < 1 )
return MBEDTLS_ERR_ASN1_OUT_OF_DATA;
return( MBEDTLS_ERR_PK_KEY_INVALID_FORMAT +
MBEDTLS_ERR_ASN1_OUT_OF_DATA );
/* Tag may be either OID or SEQUENCE */
params->tag = **p;