From aad8a6079a5cfcf27344a2efdba61017049a927d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Thomas=20Wei=C3=9Fschuh?= Date: Mon, 17 Jul 2023 21:07:18 +0200 Subject: [PATCH] column: fix memory leak MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Thomas Weißschuh --- text-utils/column.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/text-utils/column.c b/text-utils/column.c index a443ab8b1d..ad3d8f3d7f 100644 --- a/text-utils/column.c +++ b/text-utils/column.c @@ -667,6 +667,8 @@ static int read_input(struct column_control *ctl, FILE *fp) } } while (rc == 0); + free(buf); + return rc; } -- 2.47.2