mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 05:58:35 +00:00
Fix handle leak on IShopServiceAccessServerInterface.CreateServerInterface (#4591)
This commit is contained in:
parent
0992310b76
commit
26e30faff3
|
@ -14,6 +14,9 @@ namespace Ryujinx.HLE.HOS.Services.Nim
|
|||
// CreateServerInterface(pid, handle<unknown>, u64) -> object<nn::ec::IShopServiceAccessServer>
|
||||
public ResultCode CreateServerInterface(ServiceCtx context)
|
||||
{
|
||||
// Close transfer memory immediately as we don't use it.
|
||||
context.Device.System.KernelContext.Syscall.CloseHandle(context.Request.HandleDesc.ToCopy[0]);
|
||||
|
||||
MakeObject(context, new IShopServiceAccessServer());
|
||||
|
||||
Logger.Stub?.PrintStub(LogClass.ServiceNim);
|
||||
|
|
Loading…
Reference in a new issue