mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-01-19 04:02:09 +01:00
A little bit more sane feature check
This commit is contained in:
parent
060c4df170
commit
946f30f696
@ -100,8 +100,9 @@ bool LBLFile::load(Handle &hdl, const RGNFile *rgn, Handle &rgnHdl)
|
||||
&& readUInt32(hdl, flags) && readUInt32(hdl, _imgOffset)
|
||||
&& readUInt32(hdl, _imgSize)))
|
||||
return false;
|
||||
quint32 count = size ? size / recordSize : 0;
|
||||
|
||||
if (size && recordSize) {
|
||||
quint32 count = size / recordSize;
|
||||
quint32 maxId = count - 1;
|
||||
_imgOffsetIdSize = 0;
|
||||
do {
|
||||
@ -112,6 +113,7 @@ bool LBLFile::load(Handle &hdl, const RGNFile *rgn, Handle &rgnHdl)
|
||||
if (!loadFiles(hdl, count, offset, recordSize))
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
if (_encoding == 11) {
|
||||
_huffmanText = new HuffmanText();
|
||||
|
Loading…
x
Reference in New Issue
Block a user