wok-6.x annotate openssl/stuff/fix-double-free.patch @ rev 6761

Down: make to 3.81. I'm doing this so we cause there are to many problems with 3.82 right now. For example: gst-plugins-base will not compile with the new make 3.82 since there are 8 spaces instead of tabs. Or libwebkit not compiling with -j 4. Best to wait on updating this for slitaz 5.0.
author Christopher Rogers <slaxemulator@gmail.com>
date Sun Oct 17 23:32:20 2010 +0000 (2010-10-17)
parents
children
rev   line source
slaxemulator@6192 1 --- ssl/s3_clnt.c.orig Sun Feb 28 01:24:24 2010
slaxemulator@6192 2 +++ ssl/s3_clnt.c Sun Aug 8 14:49:30 2010
slaxemulator@6192 3 @@ -1508,6 +1508,7 @@
slaxemulator@6192 4 s->session->sess_cert->peer_ecdh_tmp=ecdh;
slaxemulator@6192 5 ecdh=NULL;
slaxemulator@6192 6 BN_CTX_free(bn_ctx);
slaxemulator@6192 7 + bn_ctx = NULL;
slaxemulator@6192 8 EC_POINT_free(srvr_ecpoint);
slaxemulator@6192 9 srvr_ecpoint = NULL;
slaxemulator@6192 10 }