Index: Source/bindings/v8/custom/V8CustomXPathNSResolver.cpp |
diff --git a/Source/bindings/v8/custom/V8CustomXPathNSResolver.cpp b/Source/bindings/v8/custom/V8CustomXPathNSResolver.cpp |
index d4a47ad85d03b13ac7ea0f557f9a3ca2c62082b0..5d8ff3ef96c4efcb7c8eb223669bedd6b3aa6583 100644 |
--- a/Source/bindings/v8/custom/V8CustomXPathNSResolver.cpp |
+++ b/Source/bindings/v8/custom/V8CustomXPathNSResolver.cpp |
@@ -85,7 +85,7 @@ String V8CustomXPathNSResolver::lookupNamespaceURI(const String& prefix) |
v8::Handle<v8::Value> argv[argc] = { v8String(prefix, m_isolate) }; |
v8::Handle<v8::Function> function = lookupNamespaceURIFunc.IsEmpty() ? v8::Handle<v8::Function>::Cast(m_resolver) : lookupNamespaceURIFunc; |
- v8::Handle<v8::Value> retval = ScriptController::callFunctionWithInstrumentation(0, function, m_resolver, argc, argv); |
+ v8::Handle<v8::Value> retval = ScriptController::callFunctionWithInstrumentation(0, function, m_resolver, argc, argv, m_isolate); |
// Eat exceptions from namespace resolver and return an empty string. This will most likely cause NamespaceError. |
if (tryCatch.HasCaught()) |