You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
--- 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. */
|
|
|