fs.mitm/loader: Fix crashes when launching too many processes.

This commit is contained in:
Michael Scire 2018-11-08 16:02:04 -08:00
parent cf510ad9bf
commit ce1a6a68bf
3 changed files with 10 additions and 1 deletions

View file

@ -30,6 +30,11 @@ Result ProcessManagerService::CreateProcess(Out<MovedHandle> proc_h, u64 index,
fprintf(stderr, "CreateProcess(%016lx, %08x, %08x);\n", index, flags, reslimit_h.handle);
ON_SCOPE_EXIT {
/* Loader doesn't persist the copied resource limit handle. */
svcCloseHandle(reslimit_h.handle);
};
rc = Registration::GetRegisteredTidSid(index, &tid_sid);
if (R_FAILED(rc)) {
return rc;