]> granicus.if.org Git - vim/commitdiff
patch 8.0.0458: potential crash if adding list or dict to dict fails v8.0.0458
authorBram Moolenaar <Bram@vim.org>
Tue, 14 Mar 2017 21:17:14 +0000 (22:17 +0100)
committerBram Moolenaar <Bram@vim.org>
Tue, 14 Mar 2017 21:17:14 +0000 (22:17 +0100)
Problem:    Potential crash if adding list or dict to dict fails.
Solution:   Make sure the reference count is correct. (Nikolai Pavlov, closes
            #1555)

src/dict.c
src/version.c

index 70743059e4583573ad775dd3dbce8354ac584c58..a26419b6d1c6d9cee7d4ed30e6b803a0138e1c62 100644 (file)
@@ -356,12 +356,12 @@ dict_add_list(dict_T *d, char *key, list_T *list)
     item->di_tv.v_lock = 0;
     item->di_tv.v_type = VAR_LIST;
     item->di_tv.vval.v_list = list;
+    ++list->lv_refcount;
     if (dict_add(d, item) == FAIL)
     {
        dictitem_free(item);
        return FAIL;
     }
-    ++list->lv_refcount;
     return OK;
 }
 
@@ -380,12 +380,12 @@ dict_add_dict(dict_T *d, char *key, dict_T *dict)
     item->di_tv.v_lock = 0;
     item->di_tv.v_type = VAR_DICT;
     item->di_tv.vval.v_dict = dict;
+    ++dict->dv_refcount;
     if (dict_add(d, item) == FAIL)
     {
        dictitem_free(item);
        return FAIL;
     }
-    ++dict->dv_refcount;
     return OK;
 }
 
index 81ef80fb09701190dbfc62f0c949f52b3973cb64..2e211984f6f7da611ccd2c28c81074a64bd205b6 100644 (file)
@@ -764,6 +764,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    458,
 /**/
     457,
 /**/