From 339c1bdbdfb823c4ea36242f0a4f083cbc010b84 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 2 Jan 2021 20:14:23 +0100 Subject: [PATCH] patch 8.2.2282: length check mismatch with argument of strncmp() Problem: Length check mismatch with argument of strncmp(). (Christian Brabandt) Solution: Adjust length check. --- src/ui.c | 10 ++++------ src/version.c | 2 ++ 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/ui.c b/src/ui.c index d29c26dab3..ed565276c8 100644 --- a/src/ui.c +++ b/src/ui.c @@ -1012,13 +1012,11 @@ fill_input_buf(int exit_on_error UNUSED) } while (len-- > 0) { - /* - * If a CTRL-C was typed, remove it from the buffer and set - * got_int. Also recognize CTRL-C with modifyOtherKeys set, in two - * forms. - */ + // If a CTRL-C was typed, remove it from the buffer and set + // got_int. Also recognize CTRL-C with modifyOtherKeys set, in two + // forms. if (ctrl_c_interrupts && (inbuf[inbufcount] == 3 - || (len >= 9 && STRNCMP(inbuf + inbufcount, + || (len >= 10 && STRNCMP(inbuf + inbufcount, "\033[27;5;99~", 10) == 0) || (len >= 7 && STRNCMP(inbuf + inbufcount, "\033[99;5u", 7) == 0))) diff --git a/src/version.c b/src/version.c index b54cf0a395..ed0b10236b 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 */ +/**/ + 2282, /**/ 2281, /**/ -- 2.47.2