Bug 1411257 - No MOZ_CRASH if BackgroundChild::GetOrCreateForCurrentThread() fails - part 4 - FileSystem APIs, r=asuth

This commit is contained in:
Andrea Marchesini 2017-10-25 08:45:52 +02:00
Родитель 4196bb7ca0
Коммит 4dd00f7bf4
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -140,7 +140,8 @@ FileSystemTaskChildBase::Start()
mozilla::ipc::PBackgroundChild* actor =
mozilla::ipc::BackgroundChild::GetOrCreateForCurrentThread();
if (NS_WARN_IF(!actor)) {
MOZ_CRASH("Failed to create a PBackgroundChild actor!");
// We are probably shutting down.
return;
}
nsAutoString serialization;