mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 11:45:53 +01:00
Use kB in the chache size arithmetics to prevent integer overflow
This commit is contained in:
parent
4445976cb9
commit
bd37521ca0
@ -75,7 +75,7 @@ DEM::TileCache DEM::_data;
|
|||||||
|
|
||||||
void DEM::setCacheSize(int size)
|
void DEM::setCacheSize(int size)
|
||||||
{
|
{
|
||||||
_data.setMaxCost(size * 1024);
|
_data.setMaxCost(size);
|
||||||
}
|
}
|
||||||
|
|
||||||
void DEM::setDir(const QString &path)
|
void DEM::setDir(const QString &path)
|
||||||
@ -138,7 +138,7 @@ double DEM::elevation(const Coordinates &c)
|
|||||||
if (!e) {
|
if (!e) {
|
||||||
e = loadTile(tile);
|
e = loadTile(tile);
|
||||||
ele = height(c, e);
|
ele = height(c, e);
|
||||||
_data.insert(tile, e, e->data().size());
|
_data.insert(tile, e, e->data().size() / 1024);
|
||||||
} else
|
} else
|
||||||
ele = height(c, e);
|
ele = height(c, e);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user