summaryrefslogtreecommitdiffstats
path: root/package/busybox
diff options
context:
space:
mode:
Diffstat (limited to 'package/busybox')
-rw-r--r--package/busybox/patches/430-uniq_memleak.patch11
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 93f60eb00..000000000
--- 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);