1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-08-01 10:06:53 +03:00

Fix incorrect return style

Signed-off-by: David Horstmann <david.horstmann@arm.com>
This commit is contained in:
David Horstmann
2022-10-18 18:11:13 +01:00
parent 178ec96c89
commit 078250eb56

View File

@ -552,7 +552,7 @@ error:
mbedtls_platform_zeroize( head, sizeof( *head ) );
return ret;
return( ret );
}
static int x509_parse_int( unsigned char **p, size_t n, int *res )