summaryrefslogtreecommitdiff
path: root/src/json_test.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-01-22 15:56:26 +0100
committerBram Moolenaar <Bram@vim.org>2017-01-22 15:56:26 +0100
commite2c6037da387aad05e4f6bd4a8a6267051d6de04 (patch)
treec138bdfbc103396f0995c142e23ce475a05b4be4 /src/json_test.c
parente362c3d2c34f2b7ff38b4c3d2a7ff127d2290e09 (diff)
downloadvim-git-e2c6037da387aad05e4f6bd4a8a6267051d6de04.tar.gz
patch 8.0.0216: decoding js style json may failv8.0.0216
Problem: When decoding JSON with a JS style object the JSON test may use a NULL pointer. (Coverity) Solution: Check for a NULL pointer.
Diffstat (limited to 'src/json_test.c')
-rw-r--r--src/json_test.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/json_test.c b/src/json_test.c
index 74463f3d2..c7779b29a 100644
--- a/src/json_test.c
+++ b/src/json_test.c
@@ -107,6 +107,12 @@ test_decode_find_end(void)
reader.js_buf = (char_u *)" { ";
assert(json_find_end(&reader, 0) == MAYBE);
+ /* JS object with white space */
+ reader.js_buf = (char_u *)" { a : 123 } ";
+ assert(json_find_end(&reader, JSON_JS) == OK);
+ reader.js_buf = (char_u *)" { a : ";
+ assert(json_find_end(&reader, JSON_JS) == MAYBE);
+
/* array without white space */
reader.js_buf = (char_u *)"[\"a\",123]";
assert(json_find_end(&reader, 0) == OK);