mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-04-06 13:37:27 +00:00
Correct byte array load issue: Ensure maximum number of bytes to read is set correctly.
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
parent
835703080d
commit
81cfadfe32
@ -75,7 +75,7 @@ namespace EightBit
|
||||
{
|
||||
if (limit < 0)
|
||||
{
|
||||
limit = this.Size - readOffset;
|
||||
limit = Math.Min(from.Length, this.Size - readOffset);
|
||||
}
|
||||
|
||||
var extent = limit + writeOffset;
|
||||
|
Loading…
x
Reference in New Issue
Block a user