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:
Adrian Conlon 2019-05-01 22:47:40 +01:00
parent 835703080d
commit 81cfadfe32

View File

@ -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;