upgrade opkg to r215 from the googlecode svn
[openwrt.git] / package / opkg / patches / 005-uninitialized_err.patch
1 --- a/libopkg/pkg_hash.c
2 +++ b/libopkg/pkg_hash.c
3 @@ -363,8 +363,11 @@ pkg_t *pkg_hash_fetch_best_installation_
4 abstract_pkg_t *apkg = NULL;
5 pkg_t *ret;
6
7 - if (!(apkg = abstract_pkg_fetch_by_name(hash, name)))
8 - return NULL;
9 + if (!(apkg = abstract_pkg_fetch_by_name(hash, name))) {
10 + if (err)
11 + *err = 0;
12 + return NULL;
13 + }
14
15 ret = pkg_hash_fetch_best_installation_candidate(conf, apkg, pkg_name_constraint_fcn, apkg->name, 0, err);
16
This page took 0.0475950000000001 seconds and 5 git commands to generate.