From 26302d8624de8fe4c77de0eae43b737fce71203d Mon Sep 17 00:00:00 2001 From: Alex Date: Fri, 13 Jun 2025 18:31:00 +0300 Subject: [PATCH] Minor update related to issue #3492 --- ICSharpCode.Decompiler/SRMExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ICSharpCode.Decompiler/SRMExtensions.cs b/ICSharpCode.Decompiler/SRMExtensions.cs index 750f49f42..9e0a17ded 100644 --- a/ICSharpCode.Decompiler/SRMExtensions.cs +++ b/ICSharpCode.Decompiler/SRMExtensions.cs @@ -639,7 +639,7 @@ namespace ICSharpCode.Decompiler var sectionData = pefile.GetSectionData(rva); if (sectionData.Length == 0 && size != 0) throw new BadImageFormatException($"Field data (rva=0x{rva:x}) could not be found" - + "in any section!"); + + " in any section!"); if (size < 0 || size > sectionData.Length) throw new BadImageFormatException($"Invalid size {size} for field data!"); return sectionData.GetReader(0, size);