mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-05 10:31:46 +09:00
Julia Lawall reported this null pointer dereference, this should fix it.
[ Upstream commit 9bf93dcfc453fae192fe5d7874b89699e8f800ac ] Signed-off-by: Mike Marshall <hubcap@omnibond.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
3f3c1e735d
commit
2e2177f94c
@@ -527,7 +527,7 @@ struct dentry *orangefs_mount(struct file_system_type *fst,
|
|||||||
sb->s_fs_info = kzalloc(sizeof(struct orangefs_sb_info_s), GFP_KERNEL);
|
sb->s_fs_info = kzalloc(sizeof(struct orangefs_sb_info_s), GFP_KERNEL);
|
||||||
if (!ORANGEFS_SB(sb)) {
|
if (!ORANGEFS_SB(sb)) {
|
||||||
d = ERR_PTR(-ENOMEM);
|
d = ERR_PTR(-ENOMEM);
|
||||||
goto free_sb_and_op;
|
goto free_op;
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = orangefs_fill_sb(sb,
|
ret = orangefs_fill_sb(sb,
|
||||||
|
|||||||
Reference in New Issue
Block a user