ext3: Return proper error code on ext3_fill_super()
Signed-off-by: Namhyung Kim <namhyung@gmail.com> Signed-off-by: Jan Kara <jack@suse.cz>
This commit is contained in:
parent
57e94d8647
commit
4569cd1b0d
1 changed files with 2 additions and 0 deletions
|
@ -1871,6 +1871,7 @@ static int ext3_fill_super (struct super_block *sb, void *data, int silent)
|
||||||
if (sbi->s_group_desc == NULL) {
|
if (sbi->s_group_desc == NULL) {
|
||||||
ext3_msg(sb, KERN_ERR,
|
ext3_msg(sb, KERN_ERR,
|
||||||
"error: not enough memory");
|
"error: not enough memory");
|
||||||
|
ret = -ENOMEM;
|
||||||
goto failed_mount;
|
goto failed_mount;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1958,6 +1959,7 @@ static int ext3_fill_super (struct super_block *sb, void *data, int silent)
|
||||||
}
|
}
|
||||||
if (err) {
|
if (err) {
|
||||||
ext3_msg(sb, KERN_ERR, "error: insufficient memory");
|
ext3_msg(sb, KERN_ERR, "error: insufficient memory");
|
||||||
|
ret = err;
|
||||||
goto failed_mount3;
|
goto failed_mount3;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue