0
0
mirror of https://github.com/vim/vim.git synced 2025-07-26 11:04:33 -04:00

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)
This commit is contained in:
=?UTF-8?q?Dundar=20G=C3=B6c?= 2022-03-09 13:00:54 +00:00 committed by Bram Moolenaar
parent f3507a517c
commit f01a653ac5
3 changed files with 4 additions and 2 deletions

View File

@ -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);
}

View File

@ -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.

View File

@ -750,6 +750,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
4531,
/**/
4530,
/**/