diff options
author | Max Kellermann <max@duempel.org> | 2009-12-15 20:26:38 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-12-15 20:26:38 +0100 |
commit | 530e480748854f43819c3dd1dbe6418c343b4f64 (patch) | |
tree | 488824927e465de0e55b8d10f6c03389f7deeeab /src/archive/bz2_plugin.c | |
parent | 95c3f283ea5a50a344b63af82718ac765229e8da (diff) | |
parent | 9179f108a540dcd27dafeb015778cc4dd873dfe5 (diff) | |
download | mpd-530e480748854f43819c3dd1dbe6418c343b4f64.tar.gz mpd-530e480748854f43819c3dd1dbe6418c343b4f64.tar.xz mpd-530e480748854f43819c3dd1dbe6418c343b4f64.zip |
Merge branch 'v0.15.x'
Conflicts:
src/archive/bz2_plugin.c
src/archive_api.h
src/input/file_input_plugin.c
test/run_input.c
Diffstat (limited to '')
-rw-r--r-- | src/archive/bz2_plugin.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/archive/bz2_plugin.c b/src/archive/bz2_plugin.c index 20f8a427b..693dd4dba 100644 --- a/src/archive/bz2_plugin.c +++ b/src/archive/bz2_plugin.c @@ -144,8 +144,7 @@ bz2_close(struct archive_file *file) { bz2_context *context = (bz2_context *) file; - if (context->name) - g_free(context->name); + g_free(context->name); input_stream_close(&context->istream); g_free(context); @@ -179,6 +178,8 @@ bz2_is_close(struct input_stream *is) bz2_context *context = (bz2_context *) is->data; bz2_destroy(context); is->data = NULL; + + bz2_close((struct archive_file *)context); } static bool |