[Webkit-unassigned] [Bug 52078] Make Geolocation features work in WebKit2

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Jan 10 17:54:52 PST 2011


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


Anders Carlsson <andersca at apple.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  Attachment #78480|review?                     |review+
               Flag|                            |




--- Comment #12 from Anders Carlsson <andersca at apple.com>  2011-01-10 17:54:52 PST ---
(From update of attachment 78480)
View in context: https://bugs.webkit.org/attachment.cgi?id=78480&action=review

> WebKit2/UIProcess/GeolocationPermissionRequestManagerProxy.cpp:43
> +    for (; it != end; ++it)

This should read

for (PendingRequestMap::const_iterator it = m_pendingRequests.begin(), end = m_pendingRequests.end(); it != end; ++it)

> WebKit2/WebProcess/Geolocation/GeolocationPermissionRequestManager.cpp:73
> +    m_idToGeolocationMap.remove(it->second);

Is this allowed? I thought it would be invalidated by the first call to .remove

-- 
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