Changeset 31999 in webkit


Ignore:
Timestamp:
Apr 17, 2008, 8:31:50 AM (17 years ago)
Author:
Adam Roben
Message:

Fix Bug 18544: REGRESSION (r31951): Two fast/xsl tests crash

<https://bugs.webkit.org/show_bug.cgi?id=18544>

r31951 changed XSLTProcessor::parseErrorFunc to expect a Console* as
the context parameter. The caller in XSLTProcessor was changed, but
the one in XSLStyleSheet was missed.

Reviewed by Alexey Proskuryakov.

  • xml/XSLStyleSheet.cpp: (WebCore::XSLStyleSheet::parseString): Pass the Console as the context to parseErrorFunc.
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r31998 r31999  
     12008-04-17  Adam Roben  <aroben@apple.com>
     2
     3        Fix Bug 18544: REGRESSION (r31951): Two fast/xsl tests crash
     4
     5        <https://bugs.webkit.org/show_bug.cgi?id=18544>
     6
     7        r31951 changed XSLTProcessor::parseErrorFunc to expect a Console* as
     8        the context parameter. The caller in XSLTProcessor was changed, but
     9        the one in XSLStyleSheet was missed.
     10
     11        Reviewed by Alexey Proskuryakov.
     12
     13        * xml/XSLStyleSheet.cpp:
     14        (WebCore::XSLStyleSheet::parseString): Pass the Console as the context
     15        to parseErrorFunc.
     16
    1172008-04-17  Adam Roben  <aroben@apple.com>
    218
  • trunk/WebCore/xml/XSLStyleSheet.cpp

    r30243 r31999  
    2626
    2727#include "CString.h"
     28#include "Console.h"
     29#include "DOMWindow.h"
    2830#include "DocLoader.h"
    2931#include "Document.h"
     32#include "Frame.h"
    3033#include "loader.h"
    3134#include "Node.h"
    32 #include "Page.h"
    3335#include "XMLTokenizer.h"
    3436#include "XSLImportRule.h"
     
    140142    m_stylesheetDocTaken = false;
    141143
    142     Chrome* chrome = 0;
    143     if (Page* page = ownerDocument()->page())
    144         chrome = page->chrome();
    145     xmlSetStructuredErrorFunc(chrome, XSLTProcessor::parseErrorFunc);
     144    Console* console = 0;
     145    if (Frame* frame = ownerDocument()->frame())
     146        console = frame->domWindow()->console();
     147    xmlSetStructuredErrorFunc(console, XSLTProcessor::parseErrorFunc);
    146148
    147149    m_stylesheetDoc = xmlReadMemory(reinterpret_cast<const char*>(string.characters()), string.length() * sizeof(UChar),
Note: See TracChangeset for help on using the changeset viewer.