Backed out changeset 2eca4618f579 (bug 1357012) for spidermonkey bustage

This commit is contained in:
Iris Hsiao 2017-04-19 14:57:26 +08:00
Родитель dcc910ef79
Коммит 981bde9d05
1 изменённых файлов: 1 добавлений и 3 удалений

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

@ -1858,10 +1858,8 @@ ScriptSource::tryCompressOffThread(JSContext* cx)
// Heap allocate the task. It will be freed upon compression
// completing in AttachFinishedCompressedSources.
auto task = MakeUnique<SourceCompressionTask>(cx->runtime(), this);
if (!task) {
ReportOutOfMemory(cx);
if (!task)
return false;
}
return EnqueueOffThreadCompression(cx, Move(task));
}