Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2013-01-07 02:55:56 +0400
committerBen Noordhuis <info@bnoordhuis.nl>2013-01-07 20:39:57 +0400
commitc7d7ae1fe2b41564a9cb1da8d40329664f5efdde (patch)
treef99105f2e6d6396c4e5560995fb4b71587f1cc74 /src/pipe_wrap.cc
parent109f73b2c08a042bc2d788ba9df9469846dbc533 (diff)
src: pass node_isolate to Null()
Diffstat (limited to 'src/pipe_wrap.cc')
-rw-r--r--src/pipe_wrap.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pipe_wrap.cc b/src/pipe_wrap.cc
index fa54db663d4..39897af6951 100644
--- a/src/pipe_wrap.cc
+++ b/src/pipe_wrap.cc
@@ -160,7 +160,7 @@ Handle<Value> PipeWrap::SetPendingInstances(const Arguments& args) {
uv_pipe_pending_instances(&wrap->handle_, instances);
- return v8::Null();
+ return v8::Null(node_isolate);
}
#endif
@@ -263,7 +263,7 @@ Handle<Value> PipeWrap::Open(const Arguments& args) {
uv_pipe_open(&wrap->handle_, fd);
- return scope.Close(v8::Null());
+ return scope.Close(v8::Null(node_isolate));
}