зеркало из https://github.com/mozilla/gecko-dev.git
Bug 989613 - Check OOM of allocation writer in the SnapshotWriter. r=h4writer
This commit is contained in:
Родитель
a24fba968c
Коммит
dd37d7fd88
|
@ -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 {
|
||||
|
|
Загрузка…
Ссылка в новой задаче