util-linux/util-linux-wall-CVE-2024-28085.patch

26 lines
806 B
Diff

From f86bbf07ca85640c886dacc4fba159570ddc1b4d Mon Sep 17 00:00:00 2001
From: Karel Zak <kzak@redhat.com>
Date: Thu, 21 Mar 2024 11:16:20 +0100
Subject: [PATCH] wall: consolidate output on the terminal
Let's use for all cases the same output function.
Signed-off-by: Karel Zak <kzak@redhat.com>
---
term-utils/wall.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Index: util-linux-2.37.4/term-utils/wall.c
===================================================================
--- util-linux-2.37.4.orig/term-utils/wall.c
+++ util-linux-2.37.4/term-utils/wall.c
@@ -344,7 +344,7 @@ static char *makemsg(char *fname, char *
int i;
for (i = 0; i < mvecsz; i++) {
- fputs(mvec[i], fs);
+ fputs_careful(mvec[i], fs, '^', true, TERM_WIDTH);
if (i < mvecsz - 1)
fputc(' ', fs);
}