Changeset 52491 in webkit


Ignore:
Timestamp:
Dec 22, 2009 10:43:55 AM (14 years ago)
Author:
eric@webkit.org
Message:

2009-12-22 Kwang Yul Seo <skyul@company100.net>

Reviewed by Darin Adler.

when condition COMPILER(RVCT) is fulfilled, we are trying to free a pointer to array allocated on the stack
https://bugs.webkit.org/show_bug.cgi?id=32861

Don't free the pointer for COMPILER(RVCT).

  • dom/XMLTokenizerLibxml2.cpp: (WebCore::XMLTokenizer::error):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r52489 r52491  
     12009-12-22  Kwang Yul Seo  <skyul@company100.net>
     2
     3        Reviewed by Darin Adler.
     4
     5        when condition COMPILER(RVCT) is fulfilled, we are trying to free a pointer to array allocated on the stack
     6        https://bugs.webkit.org/show_bug.cgi?id=32861
     7
     8        Don't free the pointer for COMPILER(RVCT).
     9
     10        * dom/XMLTokenizerLibxml2.cpp:
     11        (WebCore::XMLTokenizer::error):
     12
    1132009-12-22  Sam Weinig  <sam@webkit.org>
    214
  • trunk/WebCore/dom/XMLTokenizerLibxml2.cpp

    r52479 r52491  
    914914        handleError(type, m, lineNumber(), columnNumber());
    915915
    916 #if !COMPILER(MSVC)
     916#if !COMPILER(MSVC) && !COMPILER(RVCT)
    917917    free(m);
    918918#endif
Note: See TracChangeset for help on using the changeset viewer.