From f01a653ac50bb3542c24d26bb3fa5371cc3b2ed7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=3D=3FUTF-8=3Fq=3FDundar=3D20G=3DC3=3DB6c=3F=3D?= Date: Wed, 9 Mar 2022 13:00:54 +0000 Subject: [PATCH] patch 8.2.4531: LGTM warnings for condition and buffer size Problem: LGTM warnings for condition always true and buffer size too small. Solution: Remove the useless condition. Make the buffer larger. (Goc Dundar, closes #9914) --- src/charset.c | 2 +- src/term.c | 2 +- src/version.c | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/charset.c b/src/charset.c index 836a9f6ec..657ab85f4 100644 --- a/src/charset.c +++ b/src/charset.c @@ -558,7 +558,7 @@ transchar_nonprint(buf_T *buf, char_u *charbuf, int c) charbuf[1] = c ^ 0x40; // DEL displayed as ^? charbuf[2] = NUL; } - else if (enc_utf8 && c >= 0x80) + else if (enc_utf8) { transchar_hex(charbuf, c); } diff --git a/src/term.c b/src/term.c index 14a05de6d..8709cd365 100644 --- a/src/term.c +++ b/src/term.c @@ -6370,7 +6370,7 @@ req_codes_from_term(void) static void req_more_codes_from_term(void) { - char buf[11]; + char buf[23]; // extra size to shut up LGTM int old_idx = xt_index_out; // Don't do anything when going to exit. diff --git a/src/version.c b/src/version.c index 0aff73ad7..9b25ef0de 100644 --- a/src/version.c +++ b/src/version.c @@ -750,6 +750,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 4531, /**/ 4530, /**/ -- 2.40.0