fs/btrfs: Add missing btrfs_free_path
[deliverable/linux.git] / fs / btrfs / super.c
index 0ac712efcdf293ac8e858fef443b57316b039037..46d7eed7e965b8e74ae558f5dc38c41dae240d83 100644 (file)
@@ -506,8 +506,10 @@ static struct dentry *get_default_root(struct super_block *sb,
         */
        dir_id = btrfs_super_root_dir(&root->fs_info->super_copy);
        di = btrfs_lookup_dir_item(NULL, root, path, dir_id, "default", 7, 0);
-       if (IS_ERR(di))
+       if (IS_ERR(di)) {
+               btrfs_free_path(path);
                return ERR_CAST(di);
+       }
        if (!di) {
                /*
                 * Ok the default dir item isn't there.  This is weird since
This page took 0.026771 seconds and 5 git commands to generate.