projects
/
openwrt.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
1eecfd3ff0a2229e4d24887dd3d924b95bd536d9
[openwrt.git]
/
package
/
opkg
/
patches
/
011-fix_nullpointer_deref.patch
1
--- a/libopkg/opkg_cmd.c
2
+++ b/libopkg/opkg_cmd.c
3
@@ -878,7 +878,7 @@
4
pkg_to_remove = pkg_hash_fetch_installed_by_name(&conf->pkg_hash, pkg->name );
5
}
6
7
- if (pkg == NULL) {
8
+ if (pkg_to_remove == NULL) {
9
opkg_message(conf, OPKG_ERROR, "Package %s is not installed.\n", pkg->name);
10
continue;
11
}
This page took
0.040937 seconds
and
3
git commands to generate.