diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2009-11-11 22:13:10 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2009-11-11 22:13:10 +0000 |
commit | 0b69c5e5499cdc50553df29a1c852989cd398c29 (patch) | |
tree | 154d9ec9dbc2867d218e61bac2e5a41931eedd92 /package/opkg/patches/011-fix_nullpointer_deref.patch | |
parent | 2355f9d497677cb55c47a1c2d3b7371e9b0c9c8a (diff) | |
download | upstream-0b69c5e5499cdc50553df29a1c852989cd398c29.tar.gz upstream-0b69c5e5499cdc50553df29a1c852989cd398c29.tar.bz2 upstream-0b69c5e5499cdc50553df29a1c852989cd398c29.zip |
opkg: forgot to remove two obsolete patches in last commit
SVN-Revision: 18381
Diffstat (limited to 'package/opkg/patches/011-fix_nullpointer_deref.patch')
-rw-r--r-- | package/opkg/patches/011-fix_nullpointer_deref.patch | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/package/opkg/patches/011-fix_nullpointer_deref.patch b/package/opkg/patches/011-fix_nullpointer_deref.patch deleted file mode 100644 index ed198af398..0000000000 --- a/package/opkg/patches/011-fix_nullpointer_deref.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/libopkg/opkg_cmd.c -+++ b/libopkg/opkg_cmd.c -@@ -954,7 +954,7 @@ - pkg_to_remove = pkg_hash_fetch_installed_by_name(&conf->pkg_hash, pkg->name ); - } - -- if (pkg == NULL) { -+ if (pkg_to_remove == NULL) { - opkg_message(conf, OPKG_ERROR, "Package %s is not installed.\n", pkg->name); - continue; - } |