From: Bram Moolenaar Date: Thu, 7 Apr 2016 20:16:30 +0000 (+0200) Subject: patch 7.4.1718 X-Git-Tag: v7.4.1718 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d56374e25df0b317b01423a01f158157faa647fa;p=vim patch 7.4.1718 Problem: Coverity: not using return value of set_ref_in_item(). Solution: Use the return value. --- diff --git a/src/eval.c b/src/eval.c index b4e716687..3dc3e210d 100644 --- a/src/eval.c +++ b/src/eval.c @@ -7244,7 +7244,7 @@ set_ref_in_item( if (pt != NULL) for (i = 0; i < pt->pt_argc; ++i) - set_ref_in_item(&pt->pt_argv[i], copyID, + abort = abort || set_ref_in_item(&pt->pt_argv[i], copyID, ht_stack, list_stack); } } diff --git a/src/version.c b/src/version.c index e0c0888e1..a808bb727 100644 --- a/src/version.c +++ b/src/version.c @@ -748,6 +748,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1718, /**/ 1717, /**/