From 64de357257e9eab93d445c487acbc9f865537f56 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Mon, 30 Aug 2021 12:06:29 -0700 Subject: [PATCH] Remove debug from IIF again --- BurnOutSharp/PackerType/IntelInstallationFramework.cs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/BurnOutSharp/PackerType/IntelInstallationFramework.cs b/BurnOutSharp/PackerType/IntelInstallationFramework.cs index 7871619a..f8b50e4d 100644 --- a/BurnOutSharp/PackerType/IntelInstallationFramework.cs +++ b/BurnOutSharp/PackerType/IntelInstallationFramework.cs @@ -47,14 +47,6 @@ namespace BurnOutSharp.PackerType var sections = pex?.SectionTable; if (sections == null) return null; - - foreach (var section in sections) - { - string sectionName = Encoding.ASCII.GetString(section.Name).Trim('\0'); - int sectionAddr = (int)section.PointerToRawData; - int sectionEnd = sectionAddr + (int)section.VirtualSize; - System.Console.WriteLine($"{sectionName}: {sectionAddr} -> {sectionEnd}"); - } // Get the .rsrc section, if it exists var rsrcSection = sections.FirstOrDefault(s => Encoding.ASCII.GetString(s.Name).StartsWith(".rsrc"));