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)
charbuf[1] = c ^ 0x40; // DEL displayed as ^?
charbuf[2] = NUL;
}
- else if (enc_utf8 && c >= 0x80)
+ else if (enc_utf8)
{
transchar_hex(charbuf, c);
}
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.
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 4531,
/**/
4530,
/**/