summaryrefslogtreecommitdiff
path: root/src/gunzip.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gunzip.c')
-rw-r--r--src/gunzip.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/gunzip.c b/src/gunzip.c
index bed81df..944132e 100644
--- a/src/gunzip.c
+++ b/src/gunzip.c
@@ -149,12 +149,10 @@ struct apk_istream *apk_bstream_gunzip_mpart(struct apk_bstream *bs,
{
struct apk_gzip_istream *gis;
- if (bs == NULL)
- return NULL;
+ if (!bs) return NULL;
gis = malloc(sizeof(struct apk_gzip_istream));
- if (gis == NULL)
- goto err;
+ if (!gis) goto err;
*gis = (struct apk_gzip_istream) {
.is.read = gzi_read,