forked from organicmaps/organicmaps
Fix crash when trying to cover rects beyond world bounds.
This commit is contained in:
parent
58dd7df724
commit
e3ea911267
1 changed files with 3 additions and 0 deletions
|
@ -156,6 +156,9 @@ inline void CoverRect(CoordT minX, CoordT minY,
|
|||
if (maxX > BoundsT::maxX) maxX = BoundsT::maxX;
|
||||
if (maxY > BoundsT::maxY) maxY = BoundsT::maxY;
|
||||
|
||||
if (minX >= maxX || minY >= maxY)
|
||||
return;
|
||||
|
||||
CellIdT commonCell =
|
||||
CellIdConverter<BoundsT, CellIdT>::Cover2PointsWithCell(minX, minY, maxX, maxY);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue