Set s->d1 to NULL after freeing it.

(cherry picked from commit 04638f2fc3)
This commit is contained in:
Dr. Stephen Henson
2013-04-08 18:03:12 +01:00
parent 1cbd7456aa
commit a44c9b9c33

View File

@@ -217,6 +217,7 @@ void dtls1_free(SSL *s)
pq_64bit_free(&(s->d1->next_bitmap.max_seq_num)); pq_64bit_free(&(s->d1->next_bitmap.max_seq_num));
OPENSSL_free(s->d1); OPENSSL_free(s->d1);
s->d1 = NULL;
} }
void dtls1_clear(SSL *s) void dtls1_clear(SSL *s)