Bug 1442250 - 4. Fix crash when child preloading fails; r=jchen

Fix a null pointer crash when we fail to preload a child process.

MozReview-Commit-ID: FIJopxOVAEj

--HG--
extra : rebase_source : 600466740c684bfadcfac0e30d5bf2fc075e4d25
This commit is contained in:
Jim Chen 2018-03-09 12:34:37 -05:00
Родитель 7a55fbe5b5
Коммит 61fc7e2276
1 изменённых файлов: 3 добавлений и 2 удалений

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

@ -161,8 +161,9 @@ public final class GeckoProcessManager extends IProcessManager.Stub {
public void preload(final String... types) {
for (final String type : types) {
final ChildConnection connection = getConnection(type);
connection.bind();
connection.getPid();
if (connection.bind() != null) {
connection.getPid();
}
}
}