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

Changeset 175929 in webkit


Ignore:
Timestamp:
Nov 11, 2014, 8:14:15 AM (12 years ago)
Author:
Carlos Garcia Campos
Message:

Merge r175372 - Unreviewed assertion fix.

RegExpCachedResult::m_reified is now the dedicated member that knows whether
the result was reified into an array or not. Check that instead of m_result
which is now single-purpose.

  • runtime/RegExpCachedResult.cpp:

(JSC::RegExpCachedResult::setInput):

Location:
releases/WebKitGTK/webkit-2.6/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • releases/WebKitGTK/webkit-2.6/Source/JavaScriptCore/ChangeLog

    r175927 r175929  
     12014-10-30  Andreas Kling  <akling@apple.com>
     2
     3        Unreviewed assertion fix.
     4
     5        RegExpCachedResult::m_reified is now the dedicated member that knows whether
     6        the result was reified into an array or not. Check that instead of m_result
     7        which is now single-purpose.
     8
     9        * runtime/RegExpCachedResult.cpp:
     10        (JSC::RegExpCachedResult::setInput):
     11
    1122014-10-29  Andreas Kling  <akling@apple.com>
    213
  • releases/WebKitGTK/webkit-2.6/Source/JavaScriptCore/runtime/RegExpCachedResult.cpp

    r175927 r175929  
    7676    // Make sure we're reified, otherwise m_reifiedInput will be ignored.
    7777    lastResult(exec, owner);
    78     ASSERT(!m_result);
     78    ASSERT(m_reified);
    7979    m_reifiedInput.set(exec->vm(), owner, input);
    8080}
Note: See TracChangeset for help on using the changeset viewer.