Avoid LM service crashes by not reading more than the buffer size (#4701)
This commit is contained in:
parent
9e50dd99d7
commit
add2a9d151
2 changed files with 11 additions and 6 deletions
|
@ -33,6 +33,11 @@ namespace Ryujinx.Common.Memory
|
|||
return data;
|
||||
}
|
||||
|
||||
public ReadOnlySpan<byte> GetSpanSafe(int size)
|
||||
{
|
||||
return GetSpan((int)Math.Min((uint)_input.Length, (uint)size));
|
||||
}
|
||||
|
||||
public T ReadAt<T>(int offset) where T : unmanaged
|
||||
{
|
||||
return MemoryMarshal.Cast<byte, T>(_input.Slice(offset))[0];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue