Commit 564e559f2baf6a868768d0cac286980b3cfd6e30

Authored by Tony Battersby
Committed by Jens Axboe
1 parent 854fbb9c69

blk-mq: fix double-free in error path

If the allocation of bt->bs fails, then bt->map can be freed twice, once
in blk_mq_init_bitmap_tags() -> bt_alloc(), and once in
blk_mq_init_bitmap_tags() -> bt_free().  Fix by setting the pointer to
NULL after the first free.

Cc: <stable@vger.kernel.org>
Signed-off-by: Tony Battersby <tonyb@cybernetics.com>
Signed-off-by: Jens Axboe <axboe@fb.com>

Showing 1 changed file with 1 additions and 0 deletions Side-by-side Diff

... ... @@ -524,6 +524,7 @@
524 524 bt->bs = kzalloc(BT_WAIT_QUEUES * sizeof(*bt->bs), GFP_KERNEL);
525 525 if (!bt->bs) {
526 526 kfree(bt->map);
  527 + bt->map = NULL;
527 528 return -ENOMEM;
528 529 }
529 530