Changeset 206836 in webkit


Ignore:
Timestamp:
Oct 5, 2016 4:47:34 PM (7 years ago)
Author:
msaboff@apple.com
Message:

Bad ASSERT in ClonedArguments::createByCopyingFrom()
https://bugs.webkit.org/show_bug.cgi?id=162988

Reviewed by Keith Miller.

Removed bogus assert.

  • runtime/ClonedArguments.cpp:

(JSC::ClonedArguments::createByCopyingFrom):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r206811 r206836  
     12016-10-05  Michael Saboff  <msaboff@apple.com>
     2
     3        Bad ASSERT in ClonedArguments::createByCopyingFrom()
     4        https://bugs.webkit.org/show_bug.cgi?id=162988
     5
     6        Reviewed by Keith Miller.
     7
     8        Removed bogus assert.
     9
     10        * runtime/ClonedArguments.cpp:
     11        (JSC::ClonedArguments::createByCopyingFrom):
     12
    1132016-10-05  Zan Dobersek  <zdobersek@igalia.com>
    214
  • trunk/Source/JavaScriptCore/runtime/ClonedArguments.cpp

    r205462 r206836  
    136136        result->initializeIndex(vm, i, argumentStart[i].jsValue());
    137137
    138     ASSERT(exec->lexicalGlobalObject()->clonedArgumentsStructure() == result->structure());
    139138    return result;
    140139}
Note: See TracChangeset for help on using the changeset viewer.