diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-01-02 20:14:23 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-01-02 20:14:23 +0100 |
commit | 339c1bdbdfb823c4ea36242f0a4f083cbc010b84 (patch) | |
tree | ada49e5b025ccb6e176a9b0784547cc3e948e649 /src/ui.c | |
parent | a11919fa44fb43e947ef7871f31096a79429ec8a (diff) | |
download | vim-git-339c1bdbdfb823c4ea36242f0a4f083cbc010b84.tar.gz |
patch 8.2.2282: length check mismatch with argument of strncmp()v8.2.2282
Problem: Length check mismatch with argument of strncmp(). (Christian
Brabandt)
Solution: Adjust length check.
Diffstat (limited to 'src/ui.c')
-rw-r--r-- | src/ui.c | 10 |
1 files changed, 4 insertions, 6 deletions
@@ -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))) |