diff options
author | Alexander Shishkin <virtuoso@slind.org> | 2010-10-21 00:25:45 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-10-21 00:25:45 +0200 |
commit | 2348e09557c5ff9cac134cfeeffd149f90a44971 (patch) | |
tree | b07aaf83baa475d002e96adfa84c6fd0747b3077 /coreutils | |
parent | a7027bf89e57d59958641ee7033e0f85f26ef412 (diff) |
tail: free tailbuf upon cleaning up
Signed-off-by: Alexander Shishkin <virtuoso@slind.org>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/tail.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/coreutils/tail.c b/coreutils/tail.c index 44698f304..df881a37a 100644 --- a/coreutils/tail.c +++ b/coreutils/tail.c @@ -346,6 +346,7 @@ int tail_main(int argc, char **argv) } if (ENABLE_FEATURE_CLEAN_UP) { free(fds); + free(tailbuf); } return G.status; } |