Changeset 100232 in webkit
- Timestamp:
- Nov 14, 2011, 6:46:35 PM (15 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
accessibility/mac/WebAccessibilityObjectWrapper.mm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r100230 r100232 1 2011-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 1 13 2011-11-14 Oliver Hunt <oliver@apple.com> 2 14 -
trunk/Source/WebCore/accessibility/mac/WebAccessibilityObjectWrapper.mm
r98421 r100232 1341 1341 - (id)remoteAccessibilityParentObject 1342 1342 { 1343 if (!m_object || !m_object->document() )1343 if (!m_object || !m_object->document() || !m_object->document()->frame()) 1344 1344 return nil; 1345 1345
Note:
See TracChangeset
for help on using the changeset viewer.