diff options
Diffstat (limited to 'fs/btrfs/super.c')
-rw-r--r-- | fs/btrfs/super.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/btrfs/super.c b/fs/btrfs/super.c index 0ac712efcdf2..46d7eed7e965 100644 --- a/fs/btrfs/super.c +++ b/fs/btrfs/super.c | |||
@@ -506,8 +506,10 @@ static struct dentry *get_default_root(struct super_block *sb, | |||
506 | */ | 506 | */ |
507 | dir_id = btrfs_super_root_dir(&root->fs_info->super_copy); | 507 | dir_id = btrfs_super_root_dir(&root->fs_info->super_copy); |
508 | di = btrfs_lookup_dir_item(NULL, root, path, dir_id, "default", 7, 0); | 508 | di = btrfs_lookup_dir_item(NULL, root, path, dir_id, "default", 7, 0); |
509 | if (IS_ERR(di)) | 509 | if (IS_ERR(di)) { |
510 | btrfs_free_path(path); | ||
510 | return ERR_CAST(di); | 511 | return ERR_CAST(di); |
512 | } | ||
511 | if (!di) { | 513 | if (!di) { |
512 | /* | 514 | /* |
513 | * Ok the default dir item isn't there. This is weird since | 515 | * Ok the default dir item isn't there. This is weird since |