aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/udf/super.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/udf/super.c b/fs/udf/super.c
index c6a8f5f79443..b96f190bc567 100644
--- a/fs/udf/super.c
+++ b/fs/udf/super.c
@@ -937,12 +937,13 @@ static int udf_load_pvoldesc(struct super_block *sb, sector_t block)
937 udf_debug("volIdent[] = '%s'\n", UDF_SB(sb)->s_volume_ident); 937 udf_debug("volIdent[] = '%s'\n", UDF_SB(sb)->s_volume_ident);
938 } 938 }
939 939
940 if (!udf_build_ustr(instr, pvoldesc->volSetIdent, 128)) 940 if (!udf_build_ustr(instr, pvoldesc->volSetIdent, 128)) {
941 ret = udf_CS0toUTF8(outstr, instr); 941 ret = udf_CS0toUTF8(outstr, instr);
942 if (ret < 0) 942 if (ret < 0)
943 goto out_bh; 943 goto out_bh;
944 944
945 udf_debug("volSetIdent[] = '%s'\n", outstr->u_name); 945 udf_debug("volSetIdent[] = '%s'\n", outstr->u_name);
946 }
946 947
947 ret = 0; 948 ret = 0;
948out_bh: 949out_bh: