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 88330a5fcd7125f81c0eb6f2b0ffdc06b5bb8d7a
parent dc55a48d875fe93fe710942b3dc04ed04720327f
Author: Joris Vink <joris@coders.se>
Date:   Sun, 20 Oct 2019 23:42:37 +0200

missing kore_free()

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

diff --git a/src/json.c b/src/json.c @@ -287,6 +287,8 @@ json_item_free(struct kore_json_item *item) default: fatal("%s: unknown type %d", __func__, item->type); } + + kore_free(item); } static int