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

Fixed memory leak in new x509parse test

This commit is contained in:
Paul Bakker
2013-12-02 21:56:37 +01:00
parent c680405135
commit a2ffccd09f

View File

@ -241,7 +241,7 @@ void x509_crt_parse_path( char *crt_path, int ret, int nb_crt )
TEST_ASSERT( i == nb_crt );
x509_crt_init( &chain );
x509_crt_free( &chain );
}
/* END_CASE */