diff options
author | Timo Teras <timo.teras@iki.fi> | 2009-08-05 19:10:54 +0300 |
---|---|---|
committer | Timo Teras <timo.teras@iki.fi> | 2009-08-05 19:11:32 +0300 |
commit | 2cfca5b6ed658433419f9b581b3ba30f34c973c4 (patch) | |
tree | e9e184c8b2ce7e047783ca3180c29bac8f7f08a8 /src | |
parent | 8c81102268bb3154c1926c15ee4ac9707a7adbd3 (diff) | |
download | apk-tools-2cfca5b6ed658433419f9b581b3ba30f34c973c4.tar.gz apk-tools-2cfca5b6ed658433419f9b581b3ba30f34c973c4.tar.bz2 apk-tools-2cfca5b6ed658433419f9b581b3ba30f34c973c4.tar.xz apk-tools-2cfca5b6ed658433419f9b581b3ba30f34c973c4.zip |
info: fix a --exists to work if the name is non-existant
Diffstat (limited to 'src')
-rw-r--r-- | src/info.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -94,6 +94,9 @@ static int info_exists(struct info_ctx *ctx, struct apk_database *db, continue; name = dep.name; + if (name->pkgs == NULL) + continue; + for (j = 0; j < name->pkgs->num; j++) { pkg = name->pkgs->item[j]; if (apk_pkg_get_state(pkg) == APK_PKG_INSTALLED) |