Changeset 74274 in webkit


Ignore:
Timestamp:
Dec 17, 2010 9:37:04 AM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2010-12-17 John Knottenbelt <jknotten@chromium.org>

Reviewed by Jeremy Orlow.

Fix test failures where NULL GeolocationClient is provided
https://bugs.webkit.org/show_bug.cgi?id=51256

  • src/GeolocationClientProxy.cpp: (WebKit::GeolocationClientProxy::geolocationDestroyed):
Location:
trunk/WebKit/chromium
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/chromium/ChangeLog

    r74266 r74274  
     12010-12-17  John Knottenbelt  <jknotten@chromium.org>
     2
     3        Reviewed by Jeremy Orlow.
     4
     5        Fix test failures where NULL GeolocationClient is provided
     6        https://bugs.webkit.org/show_bug.cgi?id=51256
     7
     8        * src/GeolocationClientProxy.cpp:
     9        (WebKit::GeolocationClientProxy::geolocationDestroyed):
     10
    1112010-12-17  Hans Wennborg  <hans@chromium.org>
    212
  • trunk/WebKit/chromium/src/GeolocationClientProxy.cpp

    r73724 r74274  
    5656void GeolocationClientProxy::geolocationDestroyed()
    5757{
    58     m_client->geolocationDestroyed();
     58    if (m_client)
     59        m_client->geolocationDestroyed();
    5960}
    6061
Note: See TracChangeset for help on using the changeset viewer.