mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-08-31 22:46:10 +00:00
Fix possible crash on bad data.
This commit is contained in:
@@ -1194,7 +1194,9 @@ bool DocumentData::hasRemoteLocation() const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool DocumentData::useStreamingLoader() const {
|
bool DocumentData::useStreamingLoader() const {
|
||||||
if (const auto info = sticker()) {
|
if (size <= 0) {
|
||||||
|
return false;
|
||||||
|
} else if (const auto info = sticker()) {
|
||||||
return info->isWebm();
|
return info->isWebm();
|
||||||
}
|
}
|
||||||
return isAnimation()
|
return isAnimation()
|
||||||
|
Reference in New Issue
Block a user