⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 100232 in webkit


Ignore:
Timestamp:
Nov 14, 2011, 6:46:35 PM (15 years ago)
Author:
Chris Fleizach
Message:

WebProcess crashes when trying to display your "uploaded videos" page on Facebook
https://bugs.webkit.org/show_bug.cgi?id=72334

Reviewed by Beth Dakin.

Protect against documents without frames.

  • accessibility/mac/WebAccessibilityObjectWrapper.mm:

(-[WebAccessibilityObjectWrapper remoteAccessibilityParentObject]):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r100230 r100232  
     12011-11-14  Chris Fleizach  <cfleizach@apple.com>
     2
     3        WebProcess crashes when trying to display your "uploaded videos" page on Facebook
     4        https://bugs.webkit.org/show_bug.cgi?id=72334
     5
     6        Reviewed by Beth Dakin.
     7
     8        Protect against documents without frames.
     9
     10        * accessibility/mac/WebAccessibilityObjectWrapper.mm:
     11        (-[WebAccessibilityObjectWrapper remoteAccessibilityParentObject]):
     12
    1132011-11-14  Oliver Hunt  <oliver@apple.com>
    214
  • trunk/Source/WebCore/accessibility/mac/WebAccessibilityObjectWrapper.mm

    r98421 r100232  
    13411341- (id)remoteAccessibilityParentObject
    13421342{
    1343     if (!m_object || !m_object->document())
     1343    if (!m_object || !m_object->document() || !m_object->document()->frame())
    13441344        return nil;
    13451345   
Note: See TracChangeset for help on using the changeset viewer.