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/archive/bz2_archive_plugin.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/archive/bz2_archive_plugin.c') diff --git a/src/archive/bz2_archive_plugin.c b/src/archive/bz2_archive_plugin.c index 75b4b1ece..67cc0055c 100644 --- a/src/archive/bz2_archive_plugin.c +++ b/src/archive/bz2_archive_plugin.c @@ -182,6 +182,7 @@ bz2_open_stream(struct archive_file *file, bis->base.seekable = false; if (!bz2_alloc(bis, error_r)) { + input_stream_deinit(&bis->base); g_free(bis); return NULL; } @@ -202,6 +203,7 @@ bz2_is_close(struct input_stream *is) bz2_close(&bis->archive->base); + input_stream_deinit(&bis->base); g_free(bis); } -- cgit v1.2.3