missing kore_free()

This commit is contained in:
Joris Vink 2019-10-20 23:55:08 +02:00
parent 00f505e3f3
commit 22ebfae240
1 changed files with 1 additions and 0 deletions

View File

@ -288,6 +288,7 @@ json_item_free(struct kore_json_item *item)
fatal("%s: unknown type %d", __func__, item->type);
}
kore_free(item->name);
kore_free(item);
}