curl_json plugin: Fix handling of arrays.
authorFlorian Forster <octo@leeloo.lan.home.verplant.org>
Mon, 13 Dec 2010 08:45:44 +0000 (09:45 +0100)
committerFlorian Forster <octo@leeloo.lan.home.verplant.org>
Mon, 13 Dec 2010 08:45:44 +0000 (09:45 +0100)
src/curl_json.c

index 0527dc8..248b91b 100644 (file)
@@ -279,7 +279,7 @@ static int cj_cb_start_array (void * ctx)
 
 static int cj_cb_end_array (void * ctx)
 {
-  return cj_cb_start (ctx);
+  return cj_cb_end (ctx);
 }
 
 static yajl_callbacks ycallbacks = {