Fix memory leak found by GCC static analyzer
GCC 12.1.1_p20220625's -fanalyzer found and reported this. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Reviewed-by: Damian Szuberski <szuberskidamian@gmail.com> Signed-off-by: Richard Yao <richard.yao@alumni.stonybrook.edu> Closes #13975
This commit is contained in:
parent
67395be0c2
commit
d62bafee9f
|
@ -319,7 +319,9 @@ taskq_destroy(taskq_t *tq)
|
|||
tq->tq_minalloc = 0;
|
||||
while (tq->tq_nalloc != 0) {
|
||||
ASSERT(tq->tq_freelist != NULL);
|
||||
task_free(tq, task_alloc(tq, KM_SLEEP));
|
||||
taskq_ent_t *tqent_nexttq = tq->tq_freelist->tqent_next;
|
||||
task_free(tq, tq->tq_freelist);
|
||||
tq->tq_freelist = tqent_nexttq;
|
||||
}
|
||||
|
||||
mutex_exit(&tq->tq_lock);
|
||||
|
|
Loading…
Reference in New Issue