Use direct assignment

This commit is contained in:
Matt Nadareski
2025-09-03 09:04:21 -04:00
parent b4a94cf247
commit 6da9e9c931

View File

@@ -332,8 +332,7 @@ namespace BinaryObjectScanner.FileType
if (input.Length > 16384)
{
int offset = 0;
byte[] temp = input.ReadBytes(ref offset, 16384);
input = temp;
input = input.ReadBytes(ref offset, 16384);
}
// Check for ASCII strings