projects
/
openwrt.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
uClibc: implement copysignl in libc on powerpc to avoid undefined references in libstdc++
[openwrt.git]
/
package
/
opkg
/
patches
/
011-fix_nullpointer_deref.patch
1
--- a/libopkg/opkg_cmd.c
2
+++ b/libopkg/opkg_cmd.c
3
@@ -954,7 +954,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.043703 seconds
and
5
git commands to generate.