mirror of https://gitee.com/openkylin/linux.git
udf: fix udf_load_pvoldesc()
There are some missing braces here which means this function never
succeeds.
Fixes: e9d4cf411f
('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);
|
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);
|
ret = udf_CS0toUTF8(outstr, instr);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
goto out_bh;
|
goto out_bh;
|
||||||
|
|
||||||
udf_debug("volSetIdent[] = '%s'\n", outstr->u_name);
|
udf_debug("volSetIdent[] = '%s'\n", outstr->u_name);
|
||||||
|
}
|
||||||
|
|
||||||
ret = 0;
|
ret = 0;
|
||||||
out_bh:
|
out_bh:
|
||||||
|
|
Loading…
Reference in New Issue