From: Dr. Stephen Henson Date: Mon, 8 Apr 2013 17:03:12 +0000 (+0100) Subject: Set s->d1 to NULL after freeing it. X-Git-Tag: OpenSSL_0_9_8za~63 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=a44c9b9c3317e0ee4f29e1509894fe75d7c52b1a;p=oweals%2Fopenssl.git Set s->d1 to NULL after freeing it. (cherry picked from commit 04638f2fc335a6dc2af8e5d556d36e29c261dcd2) --- diff --git a/ssl/d1_lib.c b/ssl/d1_lib.c index 3d27e30858..49546ec723 100644 --- a/ssl/d1_lib.c +++ b/ssl/d1_lib.c @@ -217,6 +217,7 @@ void dtls1_free(SSL *s) pq_64bit_free(&(s->d1->next_bitmap.max_seq_num)); OPENSSL_free(s->d1); + s->d1 = NULL; } void dtls1_clear(SSL *s)