Title: [141071] trunk/Source/WebCore
Revision
141071
Author
joc...@chromium.org
Date
2013-01-29 00:18:54 -0800 (Tue, 29 Jan 2013)

Log Message

REGRESSION(r141070): Broke debug build
https://bugs.webkit.org/show_bug.cgi?id=108159

Unreviewed build fix.

* html/parser/HTMLDocumentParser.cpp:
(WebCore::HTMLDocumentParser::pumpTokenizer):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (141070 => 141071)


--- trunk/Source/WebCore/ChangeLog	2013-01-29 08:01:37 UTC (rev 141070)
+++ trunk/Source/WebCore/ChangeLog	2013-01-29 08:18:54 UTC (rev 141071)
@@ -1,3 +1,13 @@
+2013-01-29  Jochen Eisinger  <joc...@chromium.org>
+
+        REGRESSION(r141070): Broke debug build
+        https://bugs.webkit.org/show_bug.cgi?id=108159
+
+        Unreviewed build fix.
+
+        * html/parser/HTMLDocumentParser.cpp:
+        (WebCore::HTMLDocumentParser::pumpTokenizer):
+
 2013-01-28  Adam Barth  <aba...@webkit.org>
 
         HTMLDocumentParser should hold the HTMLToken using an OwnPtr

Modified: trunk/Source/WebCore/html/parser/HTMLDocumentParser.cpp (141070 => 141071)


--- trunk/Source/WebCore/html/parser/HTMLDocumentParser.cpp	2013-01-29 08:01:37 UTC (rev 141070)
+++ trunk/Source/WebCore/html/parser/HTMLDocumentParser.cpp	2013-01-29 08:18:54 UTC (rev 141071)
@@ -361,7 +361,7 @@
         }
 
         constructTreeFromHTMLToken(token());
-        ASSERT(m_token.isUninitialized());
+        ASSERT(token().isUninitialized());
     }
 
     // Ensure we haven't been totally deref'ed after pumping. Any caller of this
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to