From fb9bd53328e3ff57ea4b3cfee24068f9fb54927b Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 18 Jan 2010 09:57:53 +0100 Subject: input_stream: added function input_stream_deinit() All close() implementations must call this method. --- src/input/curl_input_plugin.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/input/curl_input_plugin.c') diff --git a/src/input/curl_input_plugin.c b/src/input/curl_input_plugin.c index c54d994e8..1b759b4fc 100644 --- a/src/input/curl_input_plugin.c +++ b/src/input/curl_input_plugin.c @@ -195,6 +195,7 @@ input_curl_free(struct input_curl *c) g_queue_free(c->buffers); g_free(c->url); + input_stream_deinit(&c->base); g_free(c); } -- cgit v1.2.3