[Webkit-unassigned] [Bug 65637] Crash beneath PlatformCALayerWinInternal::updateTiles when zooming on Google Maps

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Aug 3 13:08:40 PDT 2011


https://bugs.webkit.org/show_bug.cgi?id=65637





--- Comment #3 from Adam Roben (:aroben) <aroben at apple.com>  2011-08-03 13:08:40 PST ---
Specifically, the overflow happens in a calculation like this:

int numTilesHorizontal = ceil(m_constrainedSize.width / m_tileSize.width);
int numTilesVertical = ceil(m_constrainedSize.height / m_tileSize.height);
int numTilesTotal = numTilesHorizontal * numTilesVertical;

numTilesHorizontal and numTilesVertical are both 65536. The calculation of numTilesTotal results in overflow.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list