Title: [99600] branches/safari-534.53-branch/Source/WebCore
Revision
99600
Author
[email protected]
Date
2011-11-08 12:00:53 -0800 (Tue, 08 Nov 2011)

Log Message

Merged r99508.

Modified Paths

Diff

Modified: branches/safari-534.53-branch/Source/WebCore/ChangeLog (99599 => 99600)


--- branches/safari-534.53-branch/Source/WebCore/ChangeLog	2011-11-08 19:41:41 UTC (rev 99599)
+++ branches/safari-534.53-branch/Source/WebCore/ChangeLog	2011-11-08 20:00:53 UTC (rev 99600)
@@ -1,3 +1,17 @@
+2011-11-08  Lucas Forschler  <[email protected]>
+
+    Merge 99508
+
+    2011-11-07  Dan Bernstein  <[email protected]>
+
+            <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.
+
 2011-10-31  Lucas Forschler  <[email protected]>
 
     Merge 98936

Modified: branches/safari-534.53-branch/Source/WebCore/page/FrameView.cpp (99599 => 99600)


--- branches/safari-534.53-branch/Source/WebCore/page/FrameView.cpp	2011-11-08 19:41:41 UTC (rev 99599)
+++ branches/safari-534.53-branch/Source/WebCore/page/FrameView.cpp	2011-11-08 20:00:53 UTC (rev 99600)
@@ -2234,6 +2234,8 @@
 
 bool FrameView::isOnActivePage() const
 {
+    if (!m_frame)
+        return false;
     if (m_frame->view() != this)
         return false;
     if (Document* document = m_frame->document())
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to