mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 05:22:05 -04:00
Forgot to convert from manager->mctx to task->mctx in task_free().
This commit is contained in:
parent
6a50a5b6dc
commit
bae7090755
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue