diff options
author | Felix Fietkau <nbd@openwrt.org> | 2008-01-06 01:03:53 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2008-01-06 01:03:53 +0000 |
commit | e47bfc7c4855037db225fa8837b1b5fab51f40d0 (patch) | |
tree | 5148d5f48044eb07786ba9224195005cf90713f6 /package/busybox/patches | |
parent | 3e54b69dbf6fae12f7cec72ec209c5727b065e10 (diff) | |
download | upstream-e47bfc7c4855037db225fa8837b1b5fab51f40d0.tar.gz upstream-e47bfc7c4855037db225fa8837b1b5fab51f40d0.tar.bz2 upstream-e47bfc7c4855037db225fa8837b1b5fab51f40d0.zip |
remove memleak patch because of issues with premature freeing of memory - i will try to reduce the memory usage in a different way
SVN-Revision: 10122
Diffstat (limited to 'package/busybox/patches')
-rw-r--r-- | package/busybox/patches/522-memleak.patch | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/package/busybox/patches/522-memleak.patch b/package/busybox/patches/522-memleak.patch deleted file mode 100644 index 1bcfb8f408..0000000000 --- a/package/busybox/patches/522-memleak.patch +++ /dev/null @@ -1,24 +0,0 @@ -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); - |