summaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authorzhu qun-ying <qunying@yahoo.com>2014-06-02 14:38:52 +0100
committerDr. Stephen Henson <steve@openssl.org>2014-06-02 14:40:18 +0100
commitbcc311668ede6ffdcd6dc5a65454a548b5404fcc (patch)
tree8dffc50c494840798a8811b8ebf6c2691a6bd6db /ssl
parent1dd26414df794862d5b7df865cca4e2552331c44 (diff)
Free up s->d1->buffered_app_data.q properly.
PR#3286 (cherry picked from commit 71e95000afb2227fe5cac1c79ae884338bcd8d0b)
Diffstat (limited to 'ssl')
-rw-r--r--ssl/d1_lib.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/ssl/d1_lib.c b/ssl/d1_lib.c
index 106939f241..6bde16fa21 100644
--- a/ssl/d1_lib.c
+++ b/ssl/d1_lib.c
@@ -176,9 +176,12 @@ static void dtls1_clear_queues(SSL *s)
while ( (item = pqueue_pop(s->d1->buffered_app_data.q)) != NULL)
{
- frag = (hm_fragment *)item->data;
- OPENSSL_free(frag->fragment);
- OPENSSL_free(frag);
+ rdata = (DTLS1_RECORD_DATA *) item->data;
+ if (rdata->rbuf.buf)
+ {
+ OPENSSL_free(rdata->rbuf.buf);
+ }
+ OPENSSL_free(item->data);
pitem_free(item);
}
}