| Index: Source/bindings/v8/custom/V8IDBAnyCustom.cpp
|
| diff --git a/Source/bindings/v8/custom/V8IDBAnyCustom.cpp b/Source/bindings/v8/custom/V8IDBAnyCustom.cpp
|
| index 35bdce5fb5554d689f6548cc756869551cff5b34..da9a4e44a4a19b4e1795266ba18ec3eddd3b1072 100644
|
| --- a/Source/bindings/v8/custom/V8IDBAnyCustom.cpp
|
| +++ b/Source/bindings/v8/custom/V8IDBAnyCustom.cpp
|
| @@ -90,7 +90,7 @@ v8::Handle<v8::Value> toV8(IDBAny* impl, v8::Handle<v8::Object> creationContext,
|
| case IDBAny::StringType:
|
| return v8String(impl->string(), isolate);
|
| case IDBAny::IntegerType:
|
| - return v8::Number::New(impl->integer());
|
| + return v8::Number::New(isolate, impl->integer());
|
| case IDBAny::KeyPathType:
|
| return toV8(impl->keyPath(), creationContext, isolate);
|
| }
|
|
|