Commit 5bba2df5 authored by Max Kellermann's avatar Max Kellermann

input/soup: free all resources in method close()

parent 19356944
......@@ -251,6 +251,16 @@ input_soup_close(struct input_stream *is)
}
g_mutex_unlock(s->mutex);
g_mutex_free(s->mutex);
g_cond_free(s->cond);
SoupBuffer *buffer;
while ((buffer = g_queue_pop_head(s->buffers)) != NULL)
soup_buffer_free(buffer);
g_queue_free(s->buffers);
input_stream_deinit(&s->base);
g_free(s);
}
static int
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment