Fix critical issue in size checking of ioctl
oops
This commit is contained in:
parent
21a1513609
commit
6b788495d2
1 changed files with 1 additions and 1 deletions
|
@ -91,7 +91,7 @@ namespace Ryujinx.HLE.HOS.Services.Nv
|
||||||
|
|
||||||
if (isRead && isWrite)
|
if (isRead && isWrite)
|
||||||
{
|
{
|
||||||
if (outputDataPosition < inputDataSize)
|
if (outputDataSize < inputDataSize)
|
||||||
{
|
{
|
||||||
arguments = null;
|
arguments = null;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue