mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-04-24 15:13:23 +00:00
Fix GsfInputStdio.MakeLocalCopy
This commit is contained in:
@@ -59,7 +59,7 @@ namespace LibGSF.Input
|
||||
while (true)
|
||||
{
|
||||
byte[] buf = new byte[4096];
|
||||
int nread = stream.Read(buf, 1, buf.Length);
|
||||
int nread = stream.Read(buf, 0, buf.Length);
|
||||
|
||||
if (nread > 0)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user