Release memory for subject alt name in test

Signed-off-by: Przemek Stekiel <przemyslaw.stekiel@mobica.com>
This commit is contained in:
Przemek Stekiel 2023-04-03 10:19:22 +02:00
parent 79354c3c4d
commit 39dbe23845

View file

@ -1506,7 +1506,7 @@ void x509_crt_parse_authoritykeyid(data_t *buf,
int bufferCounter = 0; int bufferCounter = 0;
size_t issuerCounter = 0; size_t issuerCounter = 0;
unsigned int result = 0; unsigned int result = 0;
mbedtls_x509_subject_alternative_name san = { 0 }; mbedtls_x509_subject_alternative_name san;
mbedtls_x509_name *pname = NULL; mbedtls_x509_name *pname = NULL;
mbedtls_x509_crt_init(&crt); mbedtls_x509_crt_init(&crt);
@ -1533,6 +1533,7 @@ void x509_crt_parse_authoritykeyid(data_t *buf,
bufferCounter++; /* Skipping the slash */ bufferCounter++; /* Skipping the slash */
pname = pname->next; pname = pname->next;
} }
mbedtls_x509_free_subject_alt_name(&san);
TEST_ASSERT(result == 0); TEST_ASSERT(result == 0);
/* Serial test */ /* Serial test */