mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-04 19:14:18 -04:00
btrfs: fix error labels in init_btrfs_fs
btrfs_interface_init rarely fails but we could leak the prelim_ref slab. Signed-off-by: David Sterba <dsterba@suse.cz>
This commit is contained in:
@@ -1999,11 +1999,11 @@ static int __init init_btrfs_fs(void)
|
||||
|
||||
err = btrfs_prelim_ref_init();
|
||||
if (err)
|
||||
goto free_prelim_ref;
|
||||
goto free_delayed_ref;
|
||||
|
||||
err = btrfs_interface_init();
|
||||
if (err)
|
||||
goto free_delayed_ref;
|
||||
goto free_prelim_ref;
|
||||
|
||||
btrfs_init_lockdep();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user