| Index: Source/bindings/tests/results/V8TestObject.cpp
|
| diff --git a/Source/bindings/tests/results/V8TestObject.cpp b/Source/bindings/tests/results/V8TestObject.cpp
|
| index d4f81fca227b03f900694bac43bcd5da5b042527..367ddeb6d8a9062664104701b17eb37fd5fb4474 100644
|
| --- a/Source/bindings/tests/results/V8TestObject.cpp
|
| +++ b/Source/bindings/tests/results/V8TestObject.cpp
|
| @@ -4920,7 +4920,7 @@ static void readonlyShortAttributeAttributeGetter(const v8::PropertyCallbackInfo
|
| {
|
| v8::Handle<v8::Object> holder = info.Holder();
|
| TestObject* impl = V8TestObject::toNative(holder);
|
| - int result;
|
| + int result = 0;
|
| if (!readonlyShortAttributeAttributeGetterImplementedInPrivateScript(toFrameIfNotDetached(info.GetIsolate()->GetCurrentContext()), impl, &result))
|
| return;
|
| v8SetReturnValueInt(info, result);
|
| @@ -4996,7 +4996,7 @@ static void shortAttributeAttributeGetter(const v8::PropertyCallbackInfo<v8::Val
|
| {
|
| v8::Handle<v8::Object> holder = info.Holder();
|
| TestObject* impl = V8TestObject::toNative(holder);
|
| - int result;
|
| + int result = 0;
|
| if (!shortAttributeAttributeGetterImplementedInPrivateScript(toFrameIfNotDetached(info.GetIsolate()->GetCurrentContext()), impl, &result))
|
| return;
|
| v8SetReturnValueInt(info, result);
|
| @@ -10185,7 +10185,7 @@ static bool shortMethodImplementedInPrivateScriptMethodImplementedInPrivateScrip
|
| static void shortMethodImplementedInPrivateScriptMethod(const v8::FunctionCallbackInfo<v8::Value>& info)
|
| {
|
| TestObject* impl = V8TestObject::toNative(info.Holder());
|
| - int result;
|
| + int result = 0;
|
| if (!shortMethodImplementedInPrivateScriptMethodImplementedInPrivateScript(toFrameIfNotDetached(info.GetIsolate()->GetCurrentContext()), impl, &result))
|
| return;
|
| v8SetReturnValueInt(info, result);
|
| @@ -10245,7 +10245,7 @@ static void shortMethodWithShortArgumentImplementedInPrivateScriptMethod(const v
|
| V8RethrowTryCatchScope rethrow(block);
|
| TONATIVE_VOID_EXCEPTIONSTATE_INTERNAL(value, toInt16(info[0], exceptionState), exceptionState);
|
| }
|
| - int result;
|
| + int result = 0;
|
| if (!shortMethodWithShortArgumentImplementedInPrivateScriptMethodImplementedInPrivateScript(toFrameIfNotDetached(info.GetIsolate()->GetCurrentContext()), impl, value, &result))
|
| return;
|
| v8SetReturnValueInt(info, result);
|
|
|