diff options
author | Timo Teras <timo.teras@iki.fi> | 2009-01-06 19:59:50 +0200 |
---|---|---|
committer | Timo Teras <timo.teras@iki.fi> | 2009-01-06 21:23:26 +0200 |
commit | 5e2aca267883a03dae8193eda9328a48b187fe84 (patch) | |
tree | f3c20ca4f242c3acd672adbe20d010e3a2763853 /src/apk_io.h | |
parent | 6b2b9d303e61599d566a70b6e3100b9afe400d4b (diff) | |
download | apk-tools-5e2aca267883a03dae8193eda9328a48b187fe84.tar.gz apk-tools-5e2aca267883a03dae8193eda9328a48b187fe84.tar.bz2 apk-tools-5e2aca267883a03dae8193eda9328a48b187fe84.tar.xz apk-tools-5e2aca267883a03dae8193eda9328a48b187fe84.zip |
io: fix some memory leaks
Diffstat (limited to 'src/apk_io.h')
-rw-r--r-- | src/apk_io.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/apk_io.h b/src/apk_io.h index 833257d..5ac6d83 100644 --- a/src/apk_io.h +++ b/src/apk_io.h @@ -43,7 +43,7 @@ struct apk_ostream { void (*close)(void *stream); }; -struct apk_istream *apk_bstream_gunzip(struct apk_bstream *); +struct apk_istream *apk_bstream_gunzip(struct apk_bstream *, int); struct apk_ostream *apk_ostream_gzip(struct apk_ostream *); struct apk_istream *apk_istream_from_fd(int fd); |