summaryrefslogtreecommitdiffstats
path: root/package/busybox/patches
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-12-29 23:34:27 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-12-29 23:34:27 +0000
commit53600177981ba853342169864bfa64ea8ac78b9a (patch)
treed852b622a7d6365b9cb9db371bef63e17e205a0c /package/busybox/patches
parent1b03fd0720b1fa66b637b502c43b3fac7919ea05 (diff)
fix a horrible memleak in ipkg (#2702)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10036 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/busybox/patches')
-rw-r--r--package/busybox/patches/522-memleak.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/package/busybox/patches/522-memleak.patch b/package/busybox/patches/522-memleak.patch
new file mode 100644
index 000000000..1bcfb8f40
--- /dev/null
+++ b/package/busybox/patches/522-memleak.patch
@@ -0,0 +1,24 @@
+Index: busybox-1.8.2/archival/libipkg/ipkg_install.c
+===================================================================
+--- busybox-1.8.2.orig/archival/libipkg/ipkg_install.c 2007-12-30 00:02:53.577161007 +0100
++++ busybox-1.8.2/archival/libipkg/ipkg_install.c 2007-12-30 00:03:14.042327251 +0100
+@@ -500,6 +500,7 @@
+ }
+ }
+ }
++ pkg_free_installed_files(new_pkg);
+ return 0;
+ }
+
+Index: busybox-1.8.2/archival/libipkg/pkg.c
+===================================================================
+--- busybox-1.8.2.orig/archival/libipkg/pkg.c 2007-12-30 00:27:32.001919565 +0100
++++ busybox-1.8.2/archival/libipkg/pkg.c 2007-12-30 00:27:34.426057709 +0100
+@@ -1668,6 +1668,7 @@
+ // ipkg_message(conf, IPKG_DEBUG2, "pkg %s: file=%s\n", pkg->name, installed_file);
+ file_hash_set_file_owner(conf, installed_file, pkg);
+ }
++ pkg_free_installed_files(pkg);
+ }
+ pkg_vec_free(installed_pkgs);
+