summaryrefslogtreecommitdiffstats
path: root/package/opkg/patches
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-03-28 20:39:19 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-03-28 20:39:19 +0000
commit9605107aded267d765af1991f5930724e75a03d8 (patch)
tree25c70dae4f058b5c9420f2bddaeab8c55d80ff91 /package/opkg/patches
parentdbaa421297b3576dbaf121faa13894139e3a39ec (diff)
opkg: fix error message reporting caused by an uninitialized variable
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15057 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/opkg/patches')
-rw-r--r--package/opkg/patches/005-uninitialized_err.patch16
1 files changed, 16 insertions, 0 deletions
diff --git a/package/opkg/patches/005-uninitialized_err.patch b/package/opkg/patches/005-uninitialized_err.patch
new file mode 100644
index 000000000..34b8e86b1
--- /dev/null
+++ b/package/opkg/patches/005-uninitialized_err.patch
@@ -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);
+