Fix crash when trying to cover rects beyond world bounds.

This commit is contained in:
Yury Melnichek 2011-01-30 18:14:28 +01:00 committed by Alex Zolotarev
parent 58dd7df724
commit e3ea911267

View file

@ -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);