1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-09-30 16:11:18 +02:00

fix memleak in uniq (#1354)

SVN-Revision: 6313
This commit is contained in:
Felix Fietkau 2007-02-16 19:15:30 +00:00
parent 509bb267a3
commit 5d5e8ca720

@ -0,0 +1,12 @@
diff -ur bb.old/coreutils/uniq.c bb.dev/coreutils/uniq.c
--- bb.old/coreutils/uniq.c 2007-01-24 22:34:43.000000000 +0100
+++ bb.dev/coreutils/uniq.c 2007-02-16 20:04:19.245454368 +0100
@@ -83,6 +83,8 @@
if (!s0 || strcmp(e0, e1)) {
break;
+ } else {
+ free(s1);
}
++dups; /* Note: Testing for overflow seems excessive. */