2
0
Fork 0

Fix tiny leak in throttle_pool_free()

This commit is contained in:
Thomas Porzelt 2009-04-16 17:41:23 +02:00
parent 859451afad
commit c1f39538a4
1 changed files with 1 additions and 0 deletions

View File

@ -40,6 +40,7 @@ void throttle_pool_free(server *srv, throttle_pool_t *pool) {
g_queue_free(pool->queues[i]);
g_queue_free(pool->queues[i+1]);
}
g_free(pool->queues);
g_free(pool->current_queue);
g_free(pool->last_con_rearm);