Fix crash on bad sticker.

DocumentData::getStickerLarge and DocumentData::loaded go to a loop.
This commit is contained in:
John Preston 2019-02-11 15:35:03 +03:00
parent 26f1ade5ba
commit 45fda44924
1 changed files with 5 additions and 3 deletions

View File

@ -845,6 +845,7 @@ bool DocumentData::loaded(FilePathResolveType type) const {
ActiveCache().decrement(that->_data.size());
that->_data = _loader->bytes();
ActiveCache().increment(that->_data.size());
if (that->sticker()
&& !that->sticker()->image
&& !_loader->imageData().isNull()) {
@ -856,12 +857,13 @@ bool DocumentData::loaded(FilePathResolveType type) const {
_loader->imageData()));
ActiveCache().increment(ComputeUsage(that->sticker()));
}
if (!that->_data.isEmpty() || that->getStickerLarge()) {
ActiveCache().up(that);
}
that->refreshGoodThumbnail();
destroyLoader();
if (!that->_data.isEmpty() || that->getStickerLarge()) {
ActiveCache().up(that);
}
}
_owner->notifyDocumentLayoutChanged(this);
}