Readme: Fix #143 item->name --> item->string

This commit is contained in:
Max Bruckner 2017-04-06 09:56:23 +02:00
parent 795c3acabe
commit ab8489a851
1 changed files with 2 additions and 2 deletions

View File

@ -240,8 +240,8 @@ void parse_and_callback(cJSON *item, const char *prefix)
{
while (item)
{
char *newprefix = malloc(strlen(prefix) + strlen(item->name) + 2);
sprintf(newprefix, "%s/%s", prefix, item->name);
char *newprefix = malloc(strlen(prefix) + strlen(item->string) + 2);
sprintf(newprefix, "%s/%s", prefix, item->string);
int dorecurse = callback(newprefix, item->type, item);
if (item->child && dorecurse)
{