From 078250eb56869145af669cfd951a317feaddb746 Mon Sep 17 00:00:00 2001 From: David Horstmann Date: Tue, 18 Oct 2022 18:11:13 +0100 Subject: [PATCH] Fix incorrect return style Signed-off-by: David Horstmann --- library/x509.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/x509.c b/library/x509.c index 812eba8af..199f82bc2 100644 --- a/library/x509.c +++ b/library/x509.c @@ -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 )