1
0
Fork 0

lightnvm: pblk-gc: fix an error pointer dereference in init

These labels are reversed so we could end up dereferencing an error
pointer or leaking.

Fixes: 7f347ba6bb3a ("lightnvm: physical block device (pblk) target")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Matias Bjørling <matias@cnexlabs.com>
Signed-off-by: Jens Axboe <axboe@fb.com>
hifive-unleashed-5.1
Dan Carpenter 2017-04-15 20:55:51 +02:00 committed by Jens Axboe
parent a4bd217b43
commit 503ec94eca
1 changed files with 2 additions and 2 deletions

View File

@ -527,10 +527,10 @@ int pblk_gc_init(struct pblk *pblk)
return 0;
fail_free_main_kthread:
kthread_stop(gc->gc_ts);
fail_free_writer_kthread:
kthread_stop(gc->gc_writer_ts);
fail_free_main_kthread:
kthread_stop(gc->gc_ts);
return ret;
}