Bug 989613 - Check OOM of allocation writer in the SnapshotWriter. r=h4writer

This commit is contained in:
Nicolas B. Pierron 2014-03-31 03:10:00 -07:00
Родитель a24fba968c
Коммит dd37d7fd88
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -337,7 +337,8 @@ class SnapshotWriter
void endSnapshot();
bool oom() const {
return writer_.oom() || writer_.length() >= MAX_BUFFER_SIZE;
return writer_.oom() || writer_.length() >= MAX_BUFFER_SIZE ||
allocWriter_.oom() || allocWriter_.length() >= MAX_BUFFER_SIZE;
}
size_t listSize() const {