Fixed external suite stats memory leak

This commit is contained in:
Snaipe 2016-01-26 20:55:00 +01:00
parent 2b1b823db0
commit 5b4f724ccf
1 changed files with 2 additions and 0 deletions

View File

@ -116,6 +116,8 @@ void destroy_server_context(struct server_ctx *sctx) {
kh_destroy(ht_client, sctx->subprocesses);
kh_destroy(ht_extern, sctx->clients);
sfree(sctx->extern_sstats);
}
struct client_ctx *add_client_from_worker(struct server_ctx *sctx, struct client_ctx *ctx, struct worker *w) {