mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-09-21 14:24:54 +00:00
Use direct assignment
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user