diff options
author | Denis Cheng <crquan@gmail.com> | 2007-08-15 11:54:44 -0400 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2007-10-10 03:55:24 -0400 |
commit | 34eaae398e29dadeed95efd30f1eb694e5932b34 (patch) | |
tree | d5484d7a8d7530027deadcc0cb869fc6e0afdb2c /fs/gfs2 | |
parent | 0fd5355470ea40355b8af76d01748ec7b9926d4d (diff) |
[GFS2] fixed a NULL pointer assignment BUG
Signed-off-by: Denis Cheng <crquan@gmail.com>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2')
-rw-r--r-- | fs/gfs2/ops_fstype.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/gfs2/ops_fstype.c b/fs/gfs2/ops_fstype.c index 6c820cb23473..c1c6672ebb83 100644 --- a/fs/gfs2/ops_fstype.c +++ b/fs/gfs2/ops_fstype.c | |||
@@ -292,8 +292,9 @@ static int init_sb(struct gfs2_sbd *sdp, int silent, int undo) | |||
292 | fs_err(sdp, "can't get root dentry\n"); | 292 | fs_err(sdp, "can't get root dentry\n"); |
293 | error = -ENOMEM; | 293 | error = -ENOMEM; |
294 | iput(inode); | 294 | iput(inode); |
295 | } | 295 | } else |
296 | sb->s_root->d_op = &gfs2_dops; | 296 | sb->s_root->d_op = &gfs2_dops; |
297 | |||
297 | out: | 298 | out: |
298 | gfs2_glock_dq_uninit(&sb_gh); | 299 | gfs2_glock_dq_uninit(&sb_gh); |
299 | return error; | 300 | return error; |