blob: 93f60eb004ed77c6918708667729c58eb967c516 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
--- 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);
|