From cecf6406e244002be6ed4baca06cd28cbe058f2b Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Sat, 21 Mar 2015 12:23:12 +1100 Subject: [PATCH] Fix memory leak --- src/stratifier.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/stratifier.c b/src/stratifier.c index 32123a6d..9449dec9 100644 --- a/src/stratifier.c +++ b/src/stratifier.c @@ -4182,6 +4182,7 @@ static void *statsupdate(void *arg) char_t = ckalloc(sizeof(char_entry_t)); s = json_dumps(val, JSON_NO_UTF8 | JSON_PRESERVE_ORDER); ASPRINTF(&char_t->buf, "User %s:%s", user->username, s); + dealloc(s); DL_APPEND(char_list, char_t); } json_decref(val);