]> granicus.if.org Git - vim/commitdiff
updated for version 7.4.513 v7.4.513
authorBram Moolenaar <Bram@vim.org>
Wed, 12 Nov 2014 17:49:16 +0000 (18:49 +0100)
committerBram Moolenaar <Bram@vim.org>
Wed, 12 Nov 2014 17:49:16 +0000 (18:49 +0100)
Problem:    Crash because reference count is wrong for list returned by
            getreg().
Solution:   Increment the reference count. (Kimmy Lindvall)

src/eval.c
src/version.c

index ba456f2bc2808dbd1e970e7377b25df2e0fd07ad..ea24a9c37f6bd9537a77607850e98e8dbf009b71 100644 (file)
@@ -12008,6 +12008,8 @@ f_getreg(argvars, rettv)
        rettv->v_type = VAR_LIST;
        rettv->vval.v_list = (list_T *)get_reg_contents(regname,
                                      (arg2 ? GREG_EXPR_SRC : 0) | GREG_LIST);
+       if (rettv->vval.v_list != NULL)
+           ++rettv->vval.v_list->lv_refcount;
     }
     else
     {
index 2aaef3cc8af8f5c30b123269645530e51d16132f..df18f5e962397443c91bef609c9c3321a0abaf2b 100644 (file)
@@ -741,6 +741,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    513,
 /**/
     512,
 /**/