]> granicus.if.org Git - vim/commitdiff
patch 9.0.1260: Coverity warns for possible NULL pointer usage v9.0.1260
authorBram Moolenaar <Bram@vim.org>
Sun, 29 Jan 2023 14:11:24 +0000 (14:11 +0000)
committerBram Moolenaar <Bram@vim.org>
Sun, 29 Jan 2023 14:11:24 +0000 (14:11 +0000)
Problem:    Coverity warns for possible NULL pointer usage.
Solution:   Change the condition.

src/version.c
src/vim9instr.c

index 85fbc40c558ecea3f1f4404065a782ca974d79ff..2324ff2138aed01683f31f17c0f02efd35dc151a 100644 (file)
@@ -695,6 +695,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1260,
 /**/
     1259,
 /**/
index cc0d8ad8b44f29f8ce3bd3212522b0ed289b939a..ce7342b7b76c1888b324ed4a843e1fbc60979303 100644 (file)
@@ -1794,7 +1794,7 @@ generate_CALL(
                          : ufunc->uf_def_status != UF_NOT_COMPILED
                                             ? ISN_DCALL : ISN_UCALL)) == NULL)
        return FAIL;
-    if (isn->isn_type == ISN_METHODCALL)
+    if (cl != NULL /* isn->isn_type == ISN_METHODCALL */)
     {
        isn->isn_arg.mfunc = ALLOC_ONE(cmfunc_T);
        if (isn->isn_arg.mfunc == NULL)