mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-30 22:43:08 +03:00
Fix memory leak
This commit is contained in:
@ -5619,6 +5619,7 @@ static int ssl_parse_certificate_chain( mbedtls_ssl_context *ssl )
|
|||||||
/* Delete all remaining CRTs from the original CRT chain. */
|
/* Delete all remaining CRTs from the original CRT chain. */
|
||||||
mbedtls_x509_crt_free(
|
mbedtls_x509_crt_free(
|
||||||
ssl->session_negotiate->peer_cert->next );
|
ssl->session_negotiate->peer_cert->next );
|
||||||
|
mbedtls_free( ssl->session_negotiate->peer_cert->next );
|
||||||
ssl->session_negotiate->peer_cert->next = NULL;
|
ssl->session_negotiate->peer_cert->next = NULL;
|
||||||
|
|
||||||
i += n;
|
i += n;
|
||||||
|
Reference in New Issue
Block a user