2
0
Fork 0

[throttle] fix memory leak

personal/stbuehler/wip
Stefan Bühler 2013-05-26 18:50:21 +02:00
parent 0857befb7f
commit 8a65b5e7aa
1 changed files with 1 additions and 0 deletions

View File

@ -252,6 +252,7 @@ void li_throttle_pool_release(liThrottlePool *pool, liServer *srv) {
g_slice_free1(sizeof(liThrottlePoolWorkerState) * srv->worker_count, pool->workers);
pool->workers = NULL;
}
g_slice_free(liThrottlePool, pool);
}
}