test: minor fix for non-initialized variable

Signed-off-by: valerio <[email protected]>
This commit is contained in:
valerio
2023-04-27 11:54:48 +02:00
committed by Valerio Setti
parent 44570a5b66
commit 5346ef5601
+1 -1
View File
@@ -837,7 +837,7 @@ exit:
/* BEGIN_CASE depends_on:MBEDTLS_X509_CRT_PARSE_C */
void mbedtls_x509_get_name(char *rdn_sequence, int exp_ret)
{
unsigned char *name;
unsigned char *name = NULL;
unsigned char *p;
size_t name_len;
mbedtls_x509_name head;