Skip to content
Snippets Groups Projects
Commit 5d7f8de6 authored by Libor Peltan's avatar Libor Peltan
Browse files

libknot/quic: fix zero-initializing stream structure

parent acc83117
No related branches found
No related tags found
No related merge requests found
......@@ -453,6 +453,7 @@ void knot_quic_stream_ack_data(knot_quic_conn_t *conn, int64_t stream_id,
if (EMPTY_LIST(*obs) && !keep_stream) {
stream_outprocess(conn, s);
memset(s, 0, sizeof(*s));
init_list((list_t *)&s->outbufs);
while (s = &conn->streams[0], s->inbuf.iov_len == 0 && s->inbufs == NULL && s->obufs_size == 0) {
assert(conn->streams_count > 0);
conn->streams_count--;
......
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