mirror of https://github.com/procxx/kepka.git
Add checks for incorrect sticker cache bytes.
This commit is contained in:
parent
b9d3ba621e
commit
c3c6571835
|
@ -594,6 +594,9 @@ void Cache::prepareBuffers() {
|
||||||
}
|
}
|
||||||
|
|
||||||
Cache::ReadResult Cache::readCompressedFrame() {
|
Cache::ReadResult Cache::readCompressedFrame() {
|
||||||
|
if (_data.size() < _offset) {
|
||||||
|
return { false };
|
||||||
|
}
|
||||||
auto length = qint32(0);
|
auto length = qint32(0);
|
||||||
const auto part = bytes::make_span(_data).subspan(_offset);
|
const auto part = bytes::make_span(_data).subspan(_offset);
|
||||||
if (part.size() < sizeof(length)) {
|
if (part.size() < sizeof(length)) {
|
||||||
|
|
Loading…
Reference in New Issue