[SCM] WebKit Debian packaging branch, debian/experimental,	updated. debian/1.3.8-1-1049-g2e11a8e
    cfleizach at apple.com 
    cfleizach at apple.com
       
    Fri Jan 21 14:57:00 UTC 2011
    
    
  
The following commit has been merged in the debian/experimental branch:
commit fd590718160468c0965b386e0d0bd6ce1ef02282
Author: cfleizach at apple.com <cfleizach at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Jan 5 07:45:59 2011 +0000
    2011-01-04  Chris Fleizach  <cfleizach at apple.com>
    
            Unreviewed. GTK build fix.
    
            WK2: Support Accessibility
            https://bugs.webkit.org/show_bug.cgi?id=51859
    
            * page/FrameView.cpp:
            (WebCore::FrameView::axObjectCache):
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@75052 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 6412cc5..033d829 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,13 @@
+2011-01-04  Chris Fleizach  <cfleizach at apple.com>
+
+        Unreviewed. GTK build fix.
+
+        WK2: Support Accessibility
+        https://bugs.webkit.org/show_bug.cgi?id=51859
+
+        * page/FrameView.cpp:
+        (WebCore::FrameView::axObjectCache):
+
 2011-01-04  Sheriff Bot  <webkit.review.bot at gmail.com>
 
         Unreviewed, rolling out r74992.
diff --git a/WebCore/page/FrameView.cpp b/WebCore/page/FrameView.cpp
index e3e222e..426ebb3 100644
--- a/WebCore/page/FrameView.cpp
+++ b/WebCore/page/FrameView.cpp
@@ -2487,7 +2487,9 @@ void FrameView::notifyWidgetsInAllFrames(WidgetNotification notification)
     
 AXObjectCache* FrameView::axObjectCache() const
 {
-    return frame()->document()->axObjectCacheExists() ? frame()->document()->axObjectCache() : 0;
+    if (frame() && frame()->document() && frame()->document()->axObjectCacheExists())
+        return frame()->document()->axObjectCache();
+    return 0;
 }
     
 } // namespace WebCore
-- 
WebKit Debian packaging
    
    
More information about the Pkg-webkit-commits
mailing list