Simplify double assignment

This commit is contained in:
Matt Nadareski
2025-09-20 16:12:21 -04:00
parent bca5ec48d5
commit e1a659af5f

View File

@@ -282,7 +282,7 @@ namespace BinaryObjectScanner
try
{
// Get the first 16 bytes for matching
byte[] magic = new byte[16];
byte[] magic;
try
{
magic = stream.ReadBytes(16);