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

1  2 
src/curl_json.c

diff --cc src/curl_json.c
@@@ -231,17 -229,12 +231,17 @@@ 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 = */ 0);
 -    return (CJ_CB_CONTINUE);
 -  } else {
 +    cj_cb_inc_array_index (ctx, /* update_key = */ 1);
 +    key = db->state[db->depth].key;
 +    if (key == NULL) {
 +      return (CJ_CB_CONTINUE);
 +    }
 +  }
 +  else
 +  {
      cj_cb_inc_array_index (ctx, /* update_key = */ 1);
    }