Skip to content
Snippets Groups Projects
Commit 51379a54 authored by Daniel Salzman's avatar Daniel Salzman
Browse files

Merge branch 'quic_inbuf_leak' into 'master'

libknot/quic: free inbufs when stream teardown

See merge request knot/knot-dns!1520
parents 9d6c26c7 4505d32e
No related branches found
No related tags found
No related merge requests found
......@@ -208,6 +208,17 @@ void quic_table_rem2(knot_quic_cid_t **pcid, knot_quic_table_t *table)
void quic_stream_free(knot_quic_conn_t *conn, int64_t stream_id)
{
knot_quic_stream_t *s = knot_quic_conn_get_stream(conn, stream_id, false);
if (s != NULL && s->inbuf.iov_len > 0) {
free(s->inbuf.iov_base);
conn->ibufs_size -= s->inbuf.iov_len;
memset(&s->inbuf, 0, sizeof(s->inbuf));
}
while (s != NULL && s->inbufs != NULL) {
void *tofree = s->inbufs;
s->inbufs = s->inbufs->next;
free(tofree);
}
knot_quic_stream_ack_data(conn, stream_id, SIZE_MAX, false);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment