Index: Source/bindings/v8/V8Binding.cpp |
diff --git a/Source/bindings/v8/V8Binding.cpp b/Source/bindings/v8/V8Binding.cpp |
index 84d5c1e663aa0ffea86b20a6ff44db6a065e5c32..58b2e2394e1c5f8ff32db953c2e2ef42204c882e 100644 |
--- a/Source/bindings/v8/V8Binding.cpp |
+++ b/Source/bindings/v8/V8Binding.cpp |
@@ -460,7 +460,7 @@ float toFloat(v8::Handle<v8::Value> value, ExceptionState& exceptionState) |
PassRefPtrWillBeRawPtr<XPathNSResolver> toXPathNSResolver(v8::Handle<v8::Value> value, v8::Isolate* isolate) |
{ |
- RefPtrWillBeRawPtr<XPathNSResolver> resolver; |
+ RefPtrWillBeRawPtr<XPathNSResolver> resolver = nullptr; |
if (V8XPathNSResolver::hasInstance(value, isolate)) |
resolver = V8XPathNSResolver::toNative(v8::Handle<v8::Object>::Cast(value)); |
else if (value->IsObject()) |