]> granicus.if.org Git - vim/commitdiff
patch 9.0.0997: Coverity warns for dead code v9.0.0997
authorBram Moolenaar <Bram@vim.org>
Sat, 3 Dec 2022 10:13:30 +0000 (10:13 +0000)
committerBram Moolenaar <Bram@vim.org>
Sat, 3 Dec 2022 10:13:30 +0000 (10:13 +0000)
Problem:    Coverity warns for dead code.
Solution:   Don't use ASCII_ISUPPER() for a negative value.

src/term.c
src/version.c

index 3df1214337552369b6e4226b1cf98c671c5aefcb..13e3709fb482d3f7821f1125b65ff93d9e474d6f 100644 (file)
@@ -5296,7 +5296,7 @@ handle_csi(
     if (!VIM_ISDIGIT(*ap))
        first = *ap++;
 
-    if (ASCII_ISUPPER(first))
+    if (first >= 'A' && first <= 'Z')
     {
        // If "first" is in [ABCDEFHPQRS] then it is actually the "trail" and
        // no argument follows.
index 8ccf7d2b335c04d1aff13ff41fe437ef2e337bec..682beb0874dd11376097d42e304bf8481148216d 100644 (file)
@@ -695,6 +695,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    997,
 /**/
     996,
 /**/