xbps-pkgdb: add two assertions.

This commit is contained in:
Juan RP 2015-05-28 09:41:00 +02:00
parent 2ba31e048a
commit 42831b97d4

View File

@ -94,7 +94,9 @@ check_pkg_integrity(struct xbps_handle *xhp,
if (xbps_dictionary_get_cstring_nocopy(opkgd, "metafile-sha256", &sha256)) {
buf = xbps_xasprintf("%s/.%s-files.plist",
xhp->metadir, pkgname);
assert(buf);
filesd = xbps_dictionary_internalize_from_zfile(buf);
assert(filesd);
rv = xbps_file_hash_check(buf, sha256);
free(buf);
if (rv == ENOENT) {