[Webkit-unassigned] [Bug 122032] New: ASSERT(!m_hasBadParent) in InlineBox::parent() should be ASSERT_WITH_SECURITY_IMPLICATION

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Sep 27 14:27:03 PDT 2013


https://bugs.webkit.org/show_bug.cgi?id=122032

           Summary: ASSERT(!m_hasBadParent) in InlineBox::parent() should
                    be ASSERT_WITH_SECURITY_IMPLICATION
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Unspecified
        OS/Version: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: Layout and Rendering
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: ayao at apple.com


Source/WebCore/rendering/InlineBox.h:

    InlineFlowBox* parent() const
    {
        ASSERT(!m_hasBadParent);
        return m_parent;
    }


ASSERT(!m_hasBadParent) in InlineBox::parent() should be ASSERT_WITH_SECURITY_IMPLICATION.  Its sole purpose is to catch use after free bugs.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list