unbreak audit after xattr support

cute-signatures
Timo Teräs 2015-04-08 11:16:46 +03:00
parent 23d0a2244a
commit 9ed5a60dec
1 changed files with 1 additions and 2 deletions

View File

@ -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)