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

Changeset 107123 in webkit


Ignore:
Timestamp:
Feb 8, 2012, 12:53:54 PM (15 years ago)
Author:
inferno@chromium.org
Message:

Crash in Node::normalize.
https://bugs.webkit.org/show_bug.cgi?id=78135

Reviewed by Ryosuke Niwa.

No new tests. Original testcase does not reduce to manageable
extent.

  • dom/Node.cpp:

(WebCore::Node::normalize):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r107121 r107123  
     12012-02-08  Abhishek Arya  <inferno@chromium.org>
     2
     3        Crash in Node::normalize.
     4        https://bugs.webkit.org/show_bug.cgi?id=78135
     5
     6        Reviewed by Ryosuke Niwa.
     7
     8        No new tests. Original testcase does not reduce to manageable
     9        extent.
     10
     11        * dom/Node.cpp:
     12        (WebCore::Node::normalize):
     13
    1142012-02-08  Antoine Labour  <piman@chromium.org>
    215
  • trunk/Source/WebCore/dom/Node.cpp

    r106833 r107123  
    633633        }
    634634
    635         Text* text = static_cast<Text*>(node.get());
     635        RefPtr<Text> text = static_cast<Text*>(node.get());
    636636
    637637        // Remove empty text nodes.
Note: See TracChangeset for help on using the changeset viewer.