Code

Merge pull request #411 from radford/curl-json-inhomogeneous-arrays
authorPierre-Yves Ritschard <pyr@spootnik.org>
Mon, 1 Dec 2014 07:49:00 +0000 (08:49 +0100)
committerPierre-Yves Ritschard <pyr@spootnik.org>
Mon, 1 Dec 2014 07:49:00 +0000 (08:49 +0100)
curl_json plugin: don't complain about not finding expected maps in arrays

src/curl_json.c

index e99500aa554a3bc9147b664229f73cd44749d011..b79c999e2d8bf51116cf1e618a7229843c364f6d 100644 (file)
@@ -231,7 +231,7 @@ static int cj_cb_number (void *ctx,
   buffer[sizeof (buffer) - 1] = 0;
 
   if ((key == NULL) || !CJ_IS_KEY (key)) {
-    if (key != NULL)
+    if (key != NULL && !db->state[db->depth].in_array/*can be inhomogeneous*/)
       NOTICE ("curl_json plugin: Found \"%s\", but the configuration expects"
               " a map.", buffer);
     cj_cb_inc_array_index (ctx, /* update_key = */ 1);