commit | d09453c88c970059a2754d420523f577ab5deda8 | [log] [tgz] |
---|---|---|
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Mon Sep 23 19:11:32 2013 +0200 |
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Tue Sep 24 21:25:53 2013 +0200 |
tree | 12a340f8a54907da2fab5bd0e0fcce0896d24d4f | |
parent | f24b4a7316185b80490ae04dc74ae00d43baf1fb [diff] [blame] |
Check our ECDSA cert(s) against supported curves
diff --git a/library/ssl_tls.c b/library/ssl_tls.c index 5ab4a5c..cafdcf0 100644 --- a/library/ssl_tls.c +++ b/library/ssl_tls.c
@@ -4145,6 +4145,10 @@ ecdh_free( &handshake->ecdh_ctx ); #endif +#if defined(POLARSSL_ECDH_C) || defined(POLARSSL_ECDSA_C) + polarssl_free( handshake->curves ); +#endif + memset( handshake, 0, sizeof( ssl_handshake_params ) ); }