mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-05 14:36:14 +02:00
dbf38e7683
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17152 3c298f89-4303-0410-b956-a3cf2f4a3e73
17 lines
471 B
Diff
17 lines
471 B
Diff
--- a/libopkg/pkg_hash.c
|
|
+++ b/libopkg/pkg_hash.c
|
|
@@ -363,8 +363,11 @@ pkg_t *pkg_hash_fetch_best_installation_
|
|
abstract_pkg_t *apkg = NULL;
|
|
pkg_t *ret;
|
|
|
|
- if (!(apkg = abstract_pkg_fetch_by_name(hash, name)))
|
|
- return NULL;
|
|
+ if (!(apkg = abstract_pkg_fetch_by_name(hash, name))) {
|
|
+ if (err)
|
|
+ *err = 0;
|
|
+ return NULL;
|
|
+ }
|
|
|
|
ret = pkg_hash_fetch_best_installation_candidate(conf, apkg, pkg_name_constraint_fcn, apkg->name, 0, err);
|
|
|