IOS: Fix invalid FD being returned after an open

Fixes a regression introduced by 80b1bf13c2.

The return value for open replies should be overwritten with the new
file descriptor.
This commit is contained in:
Léo Lam 2018-02-28 15:56:03 +01:00
parent bf825e6354
commit 4e014f996b
1 changed files with 4 additions and 1 deletions

View File

@ -500,9 +500,12 @@ IPCCommandResult Kernel::OpenDevice(OpenRequest& request)
return Device::Device::GetDefaultReply(IPC_ENOENT);
}
const IPCCommandResult result = device->Open(request);
IPCCommandResult result = device->Open(request);
if (result.return_value >= IPC_SUCCESS)
{
m_fdmap[new_fd] = device;
result.return_value = new_fd;
}
return result;
}