From 3558ceb890fcd561a7eb18fc34b2031aa7f839d4 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Sat, 6 Sep 2025 11:59:10 -0400 Subject: [PATCH] Missed one NE --- BinaryObjectScanner/Packer/EmbeddedFile.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/BinaryObjectScanner/Packer/EmbeddedFile.cs b/BinaryObjectScanner/Packer/EmbeddedFile.cs index ff1b3e6f..42c54b36 100644 --- a/BinaryObjectScanner/Packer/EmbeddedFile.cs +++ b/BinaryObjectScanner/Packer/EmbeddedFile.cs @@ -15,8 +15,7 @@ namespace BinaryObjectScanner.Packer public string? CheckExecutable(string file, NewExecutable nex, bool includeDebug) { // TODO: Have this return all detected things, not just the first - byte[]? overlayData = null; - try { overlayData = nex.OverlayData; } catch { } + byte[]? overlayData = nex.OverlayData; // Check the overlay, if it exists if (overlayData != null && overlayData.Length > 0)