# HG changeset patch # User Christian Brabandt # Date 1454438705 -3600 # Node ID df2b8af14072797d157e2d072534c4b5249ef05e # Parent cd38747db4f0cc5737d613ef89d7369c195f6a28 commit https://github.com/vim/vim/commit/fbf9c6b6c3bdb1c2eb42ea8c227e8ee021a7a8f2 Author: Bram Moolenaar Date: Tue Feb 2 19:43:57 2016 +0100 patch 7.4.1243 Problem: Compiler warning for uninitialized variable. Solution: Initialize it. (Elias Diem) diff --git a/src/json.c b/src/json.c --- a/src/json.c +++ b/src/json.c @@ -339,7 +339,7 @@ json_decode_object(js_read_T *reader, ty typval_T item; dictitem_T *di; char_u buf[NUMBUFLEN]; - char_u *key; + char_u *key = NULL; int ret; if (res != NULL && rettv_dict_alloc(res) == FAIL) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -743,6 +743,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1243, +/**/ 1242, /**/ 1241,