From: zhu qun-ying Date: Mon, 2 Jun 2014 13:38:52 +0000 (+0100) Subject: Free up s->d1->buffered_app_data.q properly. X-Git-Tag: master-post-reformat~743 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=470990fee0182566d439ef7e82d1abf18b7085d7 Free up s->d1->buffered_app_data.q properly. PR#3286 --- diff --git a/ssl/d1_lib.c b/ssl/d1_lib.c index 2287ba6fa4..7d9d91ff2c 100644 --- a/ssl/d1_lib.c +++ b/ssl/d1_lib.c @@ -202,9 +202,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); } }