commit | 059b7482a2d9d4cebbf4c01b2b2ea6f1e783cc20 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sun Feb 05 16:34:43 2017 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Sun Feb 05 16:34:43 2017 +0100 |
tree | 48278b4312b2ba3eb17626c3be4f51c04d9ad8bb | |
parent | 2f9e575583c2ad3978ee3d0f790eeff7df56bd6c [diff] [blame] |
patch 8.0.0309: cannot use an empty key in json Problem: Cannot use an empty key in json. Solution: Allow for using an empty key.
diff --git a/src/json.c b/src/json.c index fd1b6ec..e5e85eb 100644 --- a/src/json.c +++ b/src/json.c
@@ -863,7 +863,7 @@ && cur_item != NULL) { top_item->jd_key = get_tv_string_buf_chk(cur_item, key_buf); - if (top_item->jd_key == NULL || *top_item->jd_key == NUL) + if (top_item->jd_key == NULL) { clear_tv(cur_item); EMSG(_(e_invarg));