зеркало из https://github.com/mozilla/gecko-dev.git
fix brain-dead cjones bug. no r=, trivial
This commit is contained in:
Родитель
2f47360eda
Коммит
a47715af3b
|
@ -280,10 +280,10 @@ XRE_InitChildProcess(int aArgc,
|
|||
char* end = 0;
|
||||
base::ProcessId parentPID = strtol(parentPIDString, &end, 10);
|
||||
NS_ABORT_IF_FALSE(!*end, "invalid parent PID");
|
||||
|
||||
base::ProcessHandle parentHandle;
|
||||
NS_ABORT_IF_FALSE(
|
||||
base::OpenProcessHandle(parentPID, &parentHandle),
|
||||
"can't open handle to parent");
|
||||
bool ok = base::OpenProcessHandle(parentPID, &parentHandle);
|
||||
NS_ABORT_IF_FALSE(ok, "can't open handle to parent");
|
||||
|
||||
base::AtExitManager exitManager;
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче