2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 22:15:20 +00:00

Forgot to convert from manager->mctx to task->mctx in task_free().

This commit is contained in:
Bob Halley
1999-01-14 20:18:31 +00:00
parent 6a50a5b6dc
commit bae7090755

View File

@@ -170,7 +170,7 @@ task_free(isc_task_t *task) {
UNLOCK(&manager->lock);
(void)isc_mutex_destroy(&task->lock);
task->magic = 0;
isc_mem_put(manager->mctx, task, sizeof *task);
isc_mem_put(task->mctx, task, sizeof *task);
}
isc_result_t