diff options
author | Timo Teräs <timo.teras@iki.fi> | 2014-10-08 11:13:21 +0300 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2014-10-08 11:13:21 +0300 |
commit | 32627939f5c57887b25100dd49aa91839876abed (patch) | |
tree | c39918143209386d1509c70d56fe8683878f2b30 /src/gunzip.c | |
parent | 555363f056377508040d3a555d198c4b87aff3a3 (diff) | |
download | aports-32627939f5c57887b25100dd49aa91839876abed.tar.bz2 aports-32627939f5c57887b25100dd49aa91839876abed.tar.xz |
io,url,db: support for if-modified-since
Diffstat (limited to 'src/gunzip.c')
-rw-r--r-- | src/gunzip.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/gunzip.c b/src/gunzip.c index 944132e0cf..45e3b3c484 100644 --- a/src/gunzip.c +++ b/src/gunzip.c @@ -149,7 +149,7 @@ struct apk_istream *apk_bstream_gunzip_mpart(struct apk_bstream *bs, { struct apk_gzip_istream *gis; - if (!bs) return NULL; + if (IS_ERR_OR_NULL(bs)) return ERR_CAST(bs); gis = malloc(sizeof(struct apk_gzip_istream)); if (!gis) goto err; @@ -233,8 +233,7 @@ struct apk_ostream *apk_ostream_gzip(struct apk_ostream *output) { struct apk_gzip_ostream *gos; - if (output == NULL) - return NULL; + if (IS_ERR_OR_NULL(output)) return ERR_CAST(output); gos = malloc(sizeof(struct apk_gzip_ostream)); if (gos == NULL) |