patch 7.4.1446
Problem:    Crash when using json_decode().
Solution:   Terminate string with a NUL byte.
diff --git a/src/json.c b/src/json.c
index d501928..cf887e5 100644
--- a/src/json.c
+++ b/src/json.c
@@ -659,6 +659,7 @@
 	++reader->js_used;
 	if (res != NULL)
 	{
+	    ga_append(&ga, NUL);
 	    res->v_type = VAR_STRING;
 #if defined(FEAT_MBYTE) && defined(USE_ICONV)
 	    if (!enc_utf8)