mirror of
https://github.com/openssl/openssl.git
synced 2024-11-27 05:21:51 +08:00
Free up s->d1->buffered_app_data.q properly.
PR#3286
This commit is contained in:
parent
030a3f9527
commit
470990fee0
@ -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);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user