зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1402585 - don't error when ShmSegmentReader reads empty segments. r=gankro
MozReview-Commit-ID: B18t0mrEIDm
This commit is contained in:
Родитель
e677c266f7
Коммит
a593c1be08
|
@ -182,6 +182,10 @@ ShmSegmentsReader::ReadLarge(const layers::OffsetRange& aRange, wr::Vec_u8& aInt
|
|||
bool
|
||||
ShmSegmentsReader::Read(const layers::OffsetRange& aRange, wr::Vec_u8& aInto)
|
||||
{
|
||||
if (aRange.length() == 0) {
|
||||
return true;
|
||||
}
|
||||
|
||||
if (aRange.source() != 0) {
|
||||
return ReadLarge(aRange, aInto);
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче