diff options
Diffstat (limited to 'Source/JavaScriptCore/runtime/ScopedArguments.h')
-rw-r--r-- | Source/JavaScriptCore/runtime/ScopedArguments.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/JavaScriptCore/runtime/ScopedArguments.h b/Source/JavaScriptCore/runtime/ScopedArguments.h index 8d36a1bab..5e2df3cc9 100644 --- a/Source/JavaScriptCore/runtime/ScopedArguments.h +++ b/Source/JavaScriptCore/runtime/ScopedArguments.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2015 Apple Inc. All rights reserved. + * Copyright (C) 2015-2016 Apple Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -100,7 +100,7 @@ public: ASSERT_WITH_SECURITY_IMPLICATION(canAccessIndexQuickly(i)); unsigned namedLength = m_table->length(); if (i < namedLength) - m_scope->variableAt(m_table->get(i)).set(vm, this, value); + m_scope->variableAt(m_table->get(i)).set(vm, m_scope.get(), value); else overflowStorage()[i - namedLength].set(vm, this, value); } |