summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-06-29 20:23:32 +0200
committerBram Moolenaar <Bram@vim.org>2020-06-29 20:23:32 +0200
commit6d90c61c5a6437ff5058b6c5874ba71bff574e60 (patch)
tree1cd8bd1861b79e6980977ba28261dfb7cac5dce7
parent7d2ac92ebc36049f9ce2f4ce08b8a80ca212ace2 (diff)
downloadvim-git-6d90c61c5a6437ff5058b6c5874ba71bff574e60.tar.gz
patch 8.2.1085: Coverity complains about ignoring dict_add() return valuev8.2.1085
Problem: Coverity complains about ignoring dict_add() return value. Solution: Add (void).
-rw-r--r--src/register.c10
-rw-r--r--src/version.c2
2 files changed, 7 insertions, 5 deletions
diff --git a/src/register.c b/src/register.c
index 66dd0cca6..9d4354aff 100644
--- a/src/register.c
+++ b/src/register.c
@@ -989,16 +989,16 @@ yank_do_autocmd(oparg_T *oap, yankreg_T *reg)
for (n = 0; n < reg->y_size; n++)
list_append_string(list, reg->y_array[n], -1);
list->lv_lock = VAR_FIXED;
- dict_add_list(v_event, "regcontents", list);
+ (void)dict_add_list(v_event, "regcontents", list);
buf[0] = (char_u)oap->regname;
buf[1] = NUL;
- dict_add_string(v_event, "regname", buf);
+ (void)dict_add_string(v_event, "regname", buf);
buf[0] = get_op_char(oap->op_type);
buf[1] = get_extra_op_char(oap->op_type);
buf[2] = NUL;
- dict_add_string(v_event, "operator", buf);
+ (void)dict_add_string(v_event, "operator", buf);
buf[0] = NUL;
buf[1] = NUL;
@@ -1011,9 +1011,9 @@ yank_do_autocmd(oparg_T *oap, yankreg_T *reg)
reglen + 1);
break;
}
- dict_add_string(v_event, "regtype", buf);
+ (void)dict_add_string(v_event, "regtype", buf);
- dict_add_bool(v_event, "visual", oap->is_VIsual);
+ (void)dict_add_bool(v_event, "visual", oap->is_VIsual);
// Lock the dictionary and its keys
dict_set_items_ro(v_event);
diff --git a/src/version.c b/src/version.c
index b3d0a9354..65dffff6b 100644
--- a/src/version.c
+++ b/src/version.c
@@ -755,6 +755,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1085,
+/**/
1084,
/**/
1083,