mirror of
https://github.com/kotatogram/kotatogram-desktop
synced 2025-09-01 07:05:13 +00:00
Beta version 1.9.20: Fix build on GCC.
This commit is contained in:
@@ -3675,9 +3675,7 @@ void _readStickerSets(FileKey &stickersKey, Stickers::Order *outOrder = nullptr,
|
|||||||
if (outOrder) {
|
if (outOrder) {
|
||||||
auto outOrderCount = quint32();
|
auto outOrderCount = quint32();
|
||||||
stickers.stream >> outOrderCount;
|
stickers.stream >> outOrderCount;
|
||||||
if (!_checkStreamStatus(stickers.stream)
|
if (!_checkStreamStatus(stickers.stream) || outOrderCount > 1000) {
|
||||||
|| outOrderCount < 0
|
|
||||||
|| outOrderCount > 1000) {
|
|
||||||
return failed();
|
return failed();
|
||||||
}
|
}
|
||||||
outOrder->reserve(outOrderCount);
|
outOrder->reserve(outOrderCount);
|
||||||
|
Reference in New Issue
Block a user