diff --git a/ssl/d1_lib.c b/ssl/d1_lib.c index 4dc3a2bc..d039346b 100644 --- a/ssl/d1_lib.c +++ b/ssl/d1_lib.c @@ -205,9 +205,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); } }