aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Schanzenbach <schanzen@gnunet.org>2023-06-06 21:21:51 +0200
committerMartin Schanzenbach <schanzen@gnunet.org>2023-06-06 21:21:51 +0200
commit03c4d4bee3eacf8cd938cc38f07e85a8fa68308d (patch)
tree66c829f9d30f6d2d7573c84367bd8ed6f0145b00
parent213998ecae46b729333d7e5a42ae06cf8af69d41 (diff)
parenta82c7af104e186fb92c15b709fb3ed838e871410 (diff)
downloadgnunet-03c4d4bee3eacf8cd938cc38f07e85a8fa68308d.tar.gz
gnunet-03c4d4bee3eacf8cd938cc38f07e85a8fa68308d.zip
Merge branch 'master' of git+ssh://git.gnunet.org/gnunet
-rw-r--r--src/json/json_helper.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/json/json_helper.c b/src/json/json_helper.c
index 61257e62a..515cc4c7f 100644
--- a/src/json/json_helper.c
+++ b/src/json/json_helper.c
@@ -368,6 +368,8 @@ parse_object_const (void *cls,
368 json_t *root, 368 json_t *root,
369 struct GNUNET_JSON_Specification *spec) 369 struct GNUNET_JSON_Specification *spec)
370{ 370{
371 if (NULL == root)
372 return GNUNET_OK;
371 if (! json_is_object (root)) 373 if (! json_is_object (root))
372 { 374 {
373 GNUNET_break_op (0); 375 GNUNET_break_op (0);
@@ -409,6 +411,8 @@ parse_array_const (void *cls,
409 json_t *root, 411 json_t *root,
410 struct GNUNET_JSON_Specification *spec) 412 struct GNUNET_JSON_Specification *spec)
411{ 413{
414 if (NULL == root)
415 return GNUNET_OK;
412 if (! json_is_array (root)) 416 if (! json_is_array (root))
413 { 417 {
414 GNUNET_break_op (0); 418 GNUNET_break_op (0);