svn commit: r215288 - head/crypto/openssl/ssl

Simon L. Nielsen simon at FreeBSD.org
Sun Nov 14 09:33:47 UTC 2010


Author: simon
Date: Sun Nov 14 09:33:47 2010
New Revision: 215288
URL: http://svn.freebsd.org/changeset/base/215288

Log:
  Fix double-free in OpenSSL's SSL ECDH code.
  
  It has yet to be determined if this warrants a FreeBSD Security
  Advisory, but we might as well get it fixed in the normal branches.
  
  Obtained from:	OpenSSL CVS
  Security:	CVE-2010-2939
  X-MFC after:	Not long...

Modified:
  head/crypto/openssl/ssl/s3_clnt.c

Modified: head/crypto/openssl/ssl/s3_clnt.c
==============================================================================
--- head/crypto/openssl/ssl/s3_clnt.c	Sun Nov 14 09:14:17 2010	(r215287)
+++ head/crypto/openssl/ssl/s3_clnt.c	Sun Nov 14 09:33:47 2010	(r215288)
@@ -1377,6 +1377,7 @@ int ssl3_get_key_exchange(SSL *s)
 		s->session->sess_cert->peer_ecdh_tmp=ecdh;
 		ecdh=NULL;
 		BN_CTX_free(bn_ctx);
+		bn_ctx = NULL;
 		EC_POINT_free(srvr_ecpoint);
 		srvr_ecpoint = NULL;
 		}


More information about the svn-src-head mailing list