Bug 1204866 - IonMonkey: Crash when failing to apand to parse finished list, r=bhackett

This commit is contained in:
Hannes Verschore 2015-09-17 09:21:40 +02:00
Родитель da5fa47c15
Коммит 2653d7d935
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -1277,7 +1277,8 @@ HelperThread::handleParseWorkload()
// FinishOffThreadScript will need to be called on the script to
// migrate it into the correct compartment.
HelperThreadState().parseFinishedList().append(parseTask);
if (!HelperThreadState().parseFinishedList().append(parseTask))
CrashAtUnhandlableOOM("handleParseWorkload");
parseTask = nullptr;