X-Git-Url: http://git.wpitchoune.net/gitweb/?a=blobdiff_plain;f=src%2Flp_json.c;fp=src%2Flp_json.c;h=f6bbbcd5a295b2854c4fc67c8104e417cdd71824;hb=9d12e96806e0833e6b859f622a29474ba01d54b3;hp=7cd0a8635a1c564fce821947118fc0af2585535e;hpb=24f639af308805cf4c24163666723ae10871ed03;p=ppastats.git diff --git a/src/lp_json.c b/src/lp_json.c index 7cd0a86..f6bbbcd 100644 --- a/src/lp_json.c +++ b/src/lp_json.c @@ -174,9 +174,13 @@ json_object_to_daily_download_total(const char *d, json_object *o_c) static int json_object_get_fields_count(json_object *o) { int n = 0; + struct lh_entry *entry; - json_object_object_foreach(o, key, val) + entry = json_object_get_object(o)->head; + while (entry) { + entry = entry->next; n++; + } return n; }