mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 06:11:37 +00:00
Bug 1117140 - Avoid allocating some resources in the gmp child process which we have no use for. r=bsmedberg
This commit is contained in:
parent
c69456ab40
commit
8eec6b6f85
@ -453,9 +453,13 @@ XRE_InitChildProcess(int aArgc,
|
||||
base::ProcessId parentPID = strtol(parentPIDString, &end, 10);
|
||||
NS_ABORT_IF_FALSE(!*end, "invalid parent PID");
|
||||
|
||||
base::ProcessHandle parentHandle;
|
||||
mozilla::DebugOnly<bool> ok = base::OpenProcessHandle(parentPID, &parentHandle);
|
||||
NS_ABORT_IF_FALSE(ok, "can't open handle to parent");
|
||||
// Retrieve the parent process handle. We need this for shared memory use and
|
||||
// for creating new transports in the child.
|
||||
base::ProcessHandle parentHandle = 0;
|
||||
if (XRE_GetProcessType() != GeckoProcessType_GMPlugin) {
|
||||
mozilla::DebugOnly<bool> ok = base::OpenProcessHandle(parentPID, &parentHandle);
|
||||
NS_ABORT_IF_FALSE(ok, "can't open handle to parent");
|
||||
}
|
||||
|
||||
#if defined(XP_WIN)
|
||||
// On Win7+, register the application user model id passed in by
|
||||
|
Loading…
Reference in New Issue
Block a user