diff options
author | Nicolas Thill <nico@openwrt.org> | 2009-12-14 15:57:00 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2009-12-14 15:57:00 +0000 |
commit | 845dd1e62b321c679dd56a08fae32ce0fbe29b5b (patch) | |
tree | 5ad4731f3cbc7b5945967fafa6481780bf98aac5 /package/busybox | |
parent | 98168dc4569bb717037529a1ea20e8f12cfc3629 (diff) | |
download | master-187ad058-845dd1e62b321c679dd56a08fae32ce0fbe29b5b.tar.gz master-187ad058-845dd1e62b321c679dd56a08fae32ce0fbe29b5b.tar.bz2 master-187ad058-845dd1e62b321c679dd56a08fae32ce0fbe29b5b.zip |
[package] busybox: remove uniq memleak patch, applet was fixed upstream in v1.15.2 (closes: #6354)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18778 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/busybox')
-rw-r--r-- | package/busybox/patches/430-uniq_memleak.patch | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/package/busybox/patches/430-uniq_memleak.patch b/package/busybox/patches/430-uniq_memleak.patch deleted file mode 100644 index 93f60eb004..0000000000 --- a/package/busybox/patches/430-uniq_memleak.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/coreutils/uniq.c -+++ b/coreutils/uniq.c -@@ -82,6 +82,8 @@ int uniq_main(int argc UNUSED_PARAM, cha - - if (!s0 || strncmp(e0, e1, max_chars)) { - break; -+ } else { -+ free(s1); - } - - free((char*)s1); |