kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

commit 22ebfae2404e7bd91013ce74a09c8794f2711c38
parent 00f505e3f3e60c46b6199bf45041b6694af8ec1b
Author: Joris Vink <joris@coders.se>
Date:   Sun, 20 Oct 2019 23:55:08 +0200

missing kore_free()

Diffstat:
src/json.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/json.c b/src/json.c @@ -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); }