Skip to content
Snippets Groups Projects
Commit 5d5e8ca7 authored by Felix Fietkau's avatar Felix Fietkau
Browse files

fix memleak in uniq (#1354)

SVN-Revision: 6313
parent 509bb267
No related branches found
No related tags found
No related merge requests found
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. */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment