Index: Source/bindings/v8/Dictionary.cpp |
diff --git a/Source/bindings/v8/Dictionary.cpp b/Source/bindings/v8/Dictionary.cpp |
index e34d4401dc6e85b687a732a04957e247de053686..ed31548d24e983bd609034ae9df7a9d76f0741bd 100644 |
--- a/Source/bindings/v8/Dictionary.cpp |
+++ b/Source/bindings/v8/Dictionary.cpp |
@@ -497,7 +497,7 @@ bool Dictionary::get(const String& key, Vector<String>& value) const |
v8::Local<v8::Array> v8Array = v8::Local<v8::Array>::Cast(v8Value); |
for (size_t i = 0; i < v8Array->Length(); ++i) { |
- v8::Local<v8::Value> indexedValue = v8Array->Get(v8::Uint32::New(i)); |
+ v8::Local<v8::Value> indexedValue = v8Array->Get(v8::Uint32::New(i, m_isolate)); |
V8TRYCATCH_FOR_V8STRINGRESOURCE_RETURN(V8StringResource<>, stringValue, indexedValue, false); |
value.append(stringValue); |
} |