summaryrefslogtreecommitdiff
path: root/src/handle_wrap.cc
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2013-01-06 23:55:56 +0100
committerBen Noordhuis <info@bnoordhuis.nl>2013-01-07 17:39:57 +0100
commitc7d7ae1fe2b41564a9cb1da8d40329664f5efdde (patch)
treef99105f2e6d6396c4e5560995fb4b71587f1cc74 /src/handle_wrap.cc
parent109f73b2c08a042bc2d788ba9df9469846dbc533 (diff)
downloadnode-new-c7d7ae1fe2b41564a9cb1da8d40329664f5efdde.tar.gz
src: pass node_isolate to Null()
Diffstat (limited to 'src/handle_wrap.cc')
-rw-r--r--src/handle_wrap.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/handle_wrap.cc b/src/handle_wrap.cc
index 58d5627275..4e04f827a5 100644
--- a/src/handle_wrap.cc
+++ b/src/handle_wrap.cc
@@ -97,7 +97,7 @@ Handle<Value> HandleWrap::Close(const Arguments& args) {
wrap->handle__ = NULL;
}
- return v8::Null();
+ return v8::Null(node_isolate);
}