Bug 1550422 - P6. Release object early when error. r=mattwoodrow

No need to keep the object alive.

Differential Revision: https://phabricator.services.mozilla.com/D31014

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Jean-Yves Avenard 2019-05-22 12:42:03 +00:00
Родитель 56f0daee25
Коммит 822d91dc49
2 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -67,6 +67,7 @@ bool RDDProcessHost::Launch(StringVector aExtraOpts) {
if (!GeckoChildProcessHost::AsyncLaunch(aExtraOpts)) {
mLaunchPhase = LaunchPhase::Complete;
mPrefSerializer = nullptr;
return false;
}
return true;

Просмотреть файл

@ -51,6 +51,7 @@ bool GPUProcessHost::Launch(StringVector aExtraOpts) {
if (!GeckoChildProcessHost::AsyncLaunch(aExtraOpts)) {
mLaunchPhase = LaunchPhase::Complete;
mPrefSerializer = nullptr;
return false;
}
return true;