From: Jim Warner Date: Fri, 26 Jan 2018 06:00:00 +0000 (-0600) Subject: top: avoid potential truncation with 'Inspect' feature X-Git-Tag: v3.3.13rc1~22 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4e77b307dcae2de05c508d8742dd5e7597050754;p=procps-ng top: avoid potential truncation with 'Inspect' feature As it turns out, that Ukrainian 'demo' text supporting the '=' command was 152 bytes long, up from an English version of 80 bytes. Unfortunately, the buffer used to format all such strings was insufficient at 128 bytes. Depending on the width of one's terminal, some strange result could be experienced when a multi-byte sequence was truncated. So, this just makes that buffer bigger. Signed-off-by: Jim Warner --- diff --git a/top/top.c b/top/top.c index 1fbc06b1..49a13caf 100644 --- a/top/top.c +++ b/top/top.c @@ -3339,7 +3339,7 @@ static int insp_view_choice (proc_t *obj) { #define makFS(dst) { if (Insp_sel->flen < 22) \ snprintf(dst, sizeof(dst), "%s", Insp_sel->fstr); \ else snprintf(dst, sizeof(dst), "%.19s...", Insp_sel->fstr); } - char buf[SMLBUFSIZ]; + char buf[LRGBUFSIZ]; int key, curlin = 0, curcol = 0; signify_that: