summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/io.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/io.c b/src/io.c
index 5debb5f..e9d95df 100644
--- a/src/io.c
+++ b/src/io.c
@@ -620,12 +620,11 @@ int apk_fileinfo_get(int atfd, const char *filename, unsigned int flags,
}
apk_fileinfo_hash_xattr_array(xattrs, apk_checksum_evp(xattr_checksum), &fi->xattr_csum);
apk_xattr_array_free(&xattrs);
- } else r = errno;
+ } else if (r < 0) r = errno;
close(fd);
} else r = errno;
if (r && r != ENOTSUP) return -r;
-
}
if (checksum == APK_CHECKSUM_NONE)