opkg: fix error message reporting caused by an uninitialized variable
authorFelix Fietkau <nbd@openwrt.org>
Sat, 28 Mar 2009 20:39:19 +0000 (20:39 +0000)
committerFelix Fietkau <nbd@openwrt.org>
Sat, 28 Mar 2009 20:39:19 +0000 (20:39 +0000)
SVN-Revision: 15057

package/opkg/patches/005-uninitialized_err.patch [new file with mode: 0644]

diff --git a/package/opkg/patches/005-uninitialized_err.patch b/package/opkg/patches/005-uninitialized_err.patch
new file mode 100644 (file)
index 0000000..34b8e86
--- /dev/null
@@ -0,0 +1,16 @@
+--- a/libopkg/pkg_hash.c
++++ b/libopkg/pkg_hash.c
+@@ -367,8 +367,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);