aboutsummaryrefslogtreecommitdiff
path: root/jim-json.c
diff options
context:
space:
mode:
authorSteve Bennett <steveb@workware.net.au>2019-11-09 21:03:18 +1000
committerSteve Bennett <steveb@workware.net.au>2019-11-09 21:06:57 +1000
commit7bb4dffaa22b9d90982a561f464d54a7f20c2032 (patch)
tree2f94cb0d63f128ac99ebcf1c5948eed52b49157a /jim-json.c
parentdd064e670daf910fa50e138ec0c36822405b60f5 (diff)
downloadjimtcl-7bb4dffaa22b9d90982a561f464d54a7f20c2032.zip
jimtcl-7bb4dffaa22b9d90982a561f464d54a7f20c2032.tar.gz
jimtcl-7bb4dffaa22b9d90982a561f464d54a7f20c2032.tar.bz2
json: Fix decode schema for list obj
Signed-off-by: Steve Bennett <steveb@workware.net.au>
Diffstat (limited to 'jim-json.c')
-rw-r--r--jim-json.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/jim-json.c b/jim-json.c
index c75ac74..0a47d4d 100644
--- a/jim-json.c
+++ b/jim-json.c
@@ -159,6 +159,9 @@ json_decode_dump_container(Jim_Interp *interp, struct json_state *state)
}
}
}
+ else {
+ container_type = JSON_MIXED;
+ }
}
}
json_decode_add_schema_type(interp, state, container_type);