aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTimo Teräs <timo.teras@iki.fi>2015-06-12 09:56:39 +0300
committerTimo Teräs <timo.teras@iki.fi>2015-06-12 09:57:52 +0300
commit6b140ec5c719175393101d5f723371303e09426e (patch)
tree4f2094c7c0b836555f36486825fb2d5ec3b58763 /src
parentf08fee95281c56f393bd9822c5daaa9cdc2b6b06 (diff)
downloadaports-6b140ec5c719175393101d5f723371303e09426e.tar.bz2
aports-6b140ec5c719175393101d5f723371303e09426e.tar.xz
fix bstream_from_fd to use mmap when available
Diffstat (limited to 'src')
-rw-r--r--src/io.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/io.c b/src/io.c
index 136153cb14..a62ef36b46 100644
--- a/src/io.c
+++ b/src/io.c
@@ -365,7 +365,8 @@ struct apk_bstream *apk_bstream_from_fd_pid(int fd, pid_t pid, int (*translate_s
if (pid == 0) {
bs = apk_mmap_bstream_from_fd(fd);
- if (IS_ERR_OR_NULL(bs)) return ERR_CAST(bs);
+ if (!IS_ERR_OR_NULL(bs))
+ return bs;
}
return apk_bstream_from_istream(apk_istream_from_fd_pid(fd, pid, translate_status));