Skip to content

Commit 26302d8

Browse files
committed
Minor update related to issue #3492
1 parent be42235 commit 26302d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ICSharpCode.Decompiler/SRMExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -639,7 +639,7 @@ public static unsafe BlobReader GetInitialValue(this FieldDefinition field, Meta
639639
var sectionData = pefile.GetSectionData(rva);
640640
if (sectionData.Length == 0 && size != 0)
641641
throw new BadImageFormatException($"Field data (rva=0x{rva:x}) could not be found"
642-
+ "in any section!");
642+
+ " in any section!");
643643
if (size < 0 || size > sectionData.Length)
644644
throw new BadImageFormatException($"Invalid size {size} for field data!");
645645
return sectionData.GetReader(0, size);

0 commit comments

Comments
 (0)