From 2f093a80c711ccc9d3fc7dccc3e05b30deed32ac Mon Sep 17 00:00:00 2001 From: HeroponRikiBestest <50224630+HeroponRikiBestest@users.noreply.github.com> Date: Sun, 26 Oct 2025 18:54:35 -0400 Subject: [PATCH] =?UTF-8?q?increase=20buffer=20size=20for=20isexe=20readin?= =?UTF-8?q?g=20/=20writing=20based=20on=20deterous's=20=E2=80=A6=20(#28)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * increase buffer size for isexe reading / writing based on deterous's input * remove comment --- .../Wrappers/PortableExecutable.Extraction.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SabreTools.Serialization/Wrappers/PortableExecutable.Extraction.cs b/SabreTools.Serialization/Wrappers/PortableExecutable.Extraction.cs index a455ee4a..dc5e8d0c 100644 --- a/SabreTools.Serialization/Wrappers/PortableExecutable.Extraction.cs +++ b/SabreTools.Serialization/Wrappers/PortableExecutable.Extraction.cs @@ -176,7 +176,7 @@ namespace SabreTools.Serialization.Wrappers if (overlayAddress < 0) return false; - const int chunkSize = 64 * 1024; + const int chunkSize = 2048 * 1024; var reader = new Readers.InstallShieldExecutableFile(); lock (_dataSourceLock)