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 | 03ab02cde787cc4259ad360bbb85ac51f25b41cc (patch) | |
tree | 8ceb4a99703142e15e10ff3d8b5db6411a1005dc /package/busybox | |
parent | 3c74d0b385f0057560ebc9aaba73514308276b14 (diff) | |
download | upstream-03ab02cde787cc4259ad360bbb85ac51f25b41cc.tar.gz upstream-03ab02cde787cc4259ad360bbb85ac51f25b41cc.tar.bz2 upstream-03ab02cde787cc4259ad360bbb85ac51f25b41cc.zip |
busybox: remove uniq memleak patch, applet was fixed upstream in v1.15.2 (closes: #6354)
SVN-Revision: 18778
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); |