Changeset 99508 in webkit


Ignore:
Timestamp:
Nov 7, 2011, 5:16:35 PM (14 years ago)
Author:
mitz@apple.com
Message:

<rdar://problem/10405215> REGRESSION (r98178): World of Warcraft Launcher crashes in FrameView::isOnActivePage()
https://bugs.webkit.org/show_bug.cgi?id=71743

Reviewed by Beth Dakin.

  • page/FrameView.cpp:

(WebCore::FrameView::isOnActivePage): Added a check for a null m_frame.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r99507 r99508  
     12011-11-07  Dan Bernstein  <mitz@apple.com>
     2
     3        <rdar://problem/10405215> REGRESSION (r98178): World of Warcraft Launcher crashes in FrameView::isOnActivePage()
     4        https://bugs.webkit.org/show_bug.cgi?id=71743
     5
     6        Reviewed by Beth Dakin.
     7
     8        * page/FrameView.cpp:
     9        (WebCore::FrameView::isOnActivePage): Added a check for a null m_frame.
     10
    1112011-11-07  Dmitry Lomov  <dslomov@google.com>
    212
  • trunk/Source/WebCore/page/FrameView.cpp

    r99040 r99508  
    24302430bool FrameView::isOnActivePage() const
    24312431{
     2432    if (!m_frame)
     2433        return false;
    24322434    if (m_frame->view() != this)
    24332435        return false;
Note: See TracChangeset for help on using the changeset viewer.