| Index: Source/bindings/v8/custom/V8SQLTransactionSyncCustom.cpp
|
| diff --git a/Source/bindings/v8/custom/V8SQLTransactionSyncCustom.cpp b/Source/bindings/v8/custom/V8SQLTransactionSyncCustom.cpp
|
| index db7c0ffc00514c127fd66657d0ea888a2eecdade..c12a18be44a84aec6915e45dd1cf2e66e7251185 100644
|
| --- a/Source/bindings/v8/custom/V8SQLTransactionSyncCustom.cpp
|
| +++ b/Source/bindings/v8/custom/V8SQLTransactionSyncCustom.cpp
|
| @@ -53,7 +53,7 @@ void V8SQLTransactionSync::executeSqlMethodCustom(const v8::FunctionCallbackInfo
|
| return;
|
| }
|
|
|
| - V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, statement, info[0]);
|
| + V8STRINGRESOURCE_PREPARE_VOID(V8StringResource<>, statement, info[0]);
|
|
|
| Vector<SQLValue> sqlValues;
|
|
|
| @@ -83,7 +83,7 @@ void V8SQLTransactionSync::executeSqlMethodCustom(const v8::FunctionCallbackInfo
|
| V8TRYCATCH_VOID(double, sqlValue, value->NumberValue());
|
| sqlValues.append(SQLValue(sqlValue));
|
| } else {
|
| - V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, sqlValue, value);
|
| + V8STRINGRESOURCE_PREPARE_VOID(V8StringResource<>, sqlValue, value);
|
| sqlValues.append(SQLValue(sqlValue));
|
| }
|
| }
|
|
|