aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/btrfs/inode.c1
-rw-r--r--fs/btrfs/super.c4
2 files changed, 4 insertions, 1 deletions
diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c
index e9e2b4778279..80fcd5177731 100644
--- a/fs/btrfs/inode.c
+++ b/fs/btrfs/inode.c
@@ -7314,6 +7314,7 @@ static int btrfs_symlink(struct inode *dir, struct dentry *dentry,
7314 datasize); 7314 datasize);
7315 if (err) { 7315 if (err) {
7316 drop_inode = 1; 7316 drop_inode = 1;
7317 btrfs_free_path(path);
7317 goto out_unlock; 7318 goto out_unlock;
7318 } 7319 }
7319 leaf = path->nodes[0]; 7320 leaf = path->nodes[0];
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