From 608de324793e5e5705528f8dd14c1f2951704d8f Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Sun, 20 Dec 2009 21:21:14 +0000 Subject: opkg: update to r503 - reduces peak memory usage by further 20%, rebased patches, restored old config file default SVN-Revision: 18864 --- package/opkg/patches/005-uninitialized_err.patch | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 package/opkg/patches/005-uninitialized_err.patch (limited to 'package/opkg/patches/005-uninitialized_err.patch') diff --git a/package/opkg/patches/005-uninitialized_err.patch b/package/opkg/patches/005-uninitialized_err.patch deleted file mode 100644 index 0d3b6cf..0000000 --- a/package/opkg/patches/005-uninitialized_err.patch +++ /dev/null @@ -1,16 +0,0 @@ ---- a/libopkg/pkg_hash.c -+++ b/libopkg/pkg_hash.c -@@ -384,8 +384,11 @@ - 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); - -- cgit v1.1