From 5e2aca267883a03dae8193eda9328a48b187fe84 Mon Sep 17 00:00:00 2001 From: Timo Teras Date: Tue, 6 Jan 2009 19:59:50 +0200 Subject: io: fix some memory leaks --- src/io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/io.c') diff --git a/src/io.c b/src/io.c index 78452a9..2c94886 100644 --- a/src/io.c +++ b/src/io.c @@ -389,7 +389,7 @@ int apk_file_get_info(const char *filename, struct apk_file_info *fi) struct apk_istream *apk_istream_from_file_gz(const char *file) { - return apk_bstream_gunzip(apk_bstream_from_file(file)); + return apk_bstream_gunzip(apk_bstream_from_file(file), TRUE); } struct apk_fd_ostream { -- cgit v1.2.3