summaryrefslogtreecommitdiffstats
path: root/package/busybox/patches/430-uniq_memleak.patch
blob: df56bf81036e501bcc93699341db723fd99c7d9b (plain)
1
2
3
4
5
6
7
8
9
10
11
--- a/coreutils/uniq.c
+++ b/coreutils/uniq.c
@@ -82,6 +82,8 @@
 
 			if (!s0 || strncmp(e0, e1, max_chars)) {
 				break;
+			} else {
+				free(s1);
 			}
 
 			++dups;	 /* note: testing for overflow seems excessive. */