Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bbbe4512 authored by Adrian Bunk's avatar Adrian Bunk Committed by Steven Whitehouse
Browse files

[GFS2] fs/gfs2/ops_fstype.c:fill_super_meta(): fix NULL dereference



Don't dereference new->s_root when we do know it's NULL.

Spotted by the Coverity checker.

Signed-off-by: default avatarAdrian Bunk <bunk@stusta.de>
Signed-off-by: default avatarSteven Whitehouse <swhiteho@redhat.com>
parent 348acd48
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -794,7 +794,7 @@ static int fill_super_meta(struct super_block *sb, struct super_block *new,
		fs_err(sdp, "can't get root dentry\n");
		fs_err(sdp, "can't get root dentry\n");
		error = -ENOMEM;
		error = -ENOMEM;
		iput(inode);
		iput(inode);
	}
	} else
		new->s_root->d_op = &gfs2_dops;
		new->s_root->d_op = &gfs2_dops;


	return error;
	return error;