We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bcb182 commit 90fba56Copy full SHA for 90fba56
2 files changed
src/list.c
@@ -602,11 +602,12 @@ list_append(list_T *l, listitem_T *item)
602
int
603
list_append_tv(list_T *l, typval_T *tv)
604
{
605
- listitem_T *li = listitem_alloc();
+ listitem_T *li;
606
607
if (l->lv_type != NULL && l->lv_type->tt_member != NULL
608
&& check_typval_arg_type(l->lv_type->tt_member, tv, 0) == FAIL)
609
return FAIL;
610
+ li = listitem_alloc();
611
if (li == NULL)
612
613
copy_tv(tv, &li->li_tv);
src/version.c
@@ -755,6 +755,8 @@ static char *(features[]) =
755
756
static int included_patches[] =
757
{ /* Add new patch number below this line */
758
+/**/
759
+ 3133,
760
/**/
761
3132,
762
0 commit comments