mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
udf: fix udf_load_pvoldesc()
There are some missing braces here which means this function never succeeds. Fixes: e9d4cf411f75 ('udf: improve error management in udf_CS0toUTF8()') Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Jan Kara <jack@suse.cz>
This commit is contained in:
parent
942d702e71
commit
792352cb16
@ -937,12 +937,13 @@ static int udf_load_pvoldesc(struct super_block *sb, sector_t block)
|
||||
udf_debug("volIdent[] = '%s'\n", UDF_SB(sb)->s_volume_ident);
|
||||
}
|
||||
|
||||
if (!udf_build_ustr(instr, pvoldesc->volSetIdent, 128))
|
||||
if (!udf_build_ustr(instr, pvoldesc->volSetIdent, 128)) {
|
||||
ret = udf_CS0toUTF8(outstr, instr);
|
||||
if (ret < 0)
|
||||
goto out_bh;
|
||||
|
||||
udf_debug("volSetIdent[] = '%s'\n", outstr->u_name);
|
||||
}
|
||||
|
||||
ret = 0;
|
||||
out_bh:
|
||||
|
Loading…
x
Reference in New Issue
Block a user