| Index: Source/bindings/v8/custom/V8SQLResultSetRowListCustom.cpp
|
| diff --git a/Source/bindings/v8/custom/V8SQLResultSetRowListCustom.cpp b/Source/bindings/v8/custom/V8SQLResultSetRowListCustom.cpp
|
| index 01c452c022714dfa293d6ac8bbcca80d1f13b21d..c56441e03a190042457de1126d7c366c06d2b972 100644
|
| --- a/Source/bindings/v8/custom/V8SQLResultSetRowListCustom.cpp
|
| +++ b/Source/bindings/v8/custom/V8SQLResultSetRowListCustom.cpp
|
| @@ -72,7 +72,7 @@ void V8SQLResultSetRowList::itemMethodCustom(const v8::FunctionCallbackInfo<v8::
|
| value = v8::Null(args.GetIsolate());
|
| break;
|
| case SQLValue::NumberValue:
|
| - value = v8::Number::New(sqlValue.number());
|
| + value = v8::Number::New(args.GetIsolate(), sqlValue.number());
|
| break;
|
| default:
|
| ASSERT_NOT_REACHED();
|
|
|