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:
authorTimothy J Fontaine <tjfontaine@gmail.com>2013-11-19 01:41:17 +0400
committerTimothy J Fontaine <tjfontaine@gmail.com>2013-11-19 01:41:17 +0400
commit2329a254b480a5a0bbe13079dd4bed6b38dfc126 (patch)
tree13a6f3379c7a5413320e15565d570a23cc0b2ae0 /src/handle_wrap.cc
parentbd9c66668c6fe45d640bce208da61bd1c864e104 (diff)
parent1394d5856b4c7b7ade1f1accbd9bffeea2e2144d (diff)
Merge remote-tracking branch 'upstream/v0.10'
Conflicts: AUTHORS ChangeLog deps/uv/AUTHORS deps/uv/ChangeLog deps/uv/README.md deps/uv/build.mk deps/uv/src/unix/core.c deps/uv/src/unix/darwin-proctitle.c deps/uv/src/unix/darwin.c deps/uv/src/unix/fsevents.c deps/uv/src/unix/udp.c deps/uv/src/version.c deps/v8/src/platform-solaris.cc deps/v8/test/cctest/test-api.cc lib/tls.js src/node.h src/node_version.h
Diffstat (limited to 'src/handle_wrap.cc')
-rw-r--r--src/handle_wrap.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/handle_wrap.cc b/src/handle_wrap.cc
index 553cf799dc0..0a7f7d27a7b 100644
--- a/src/handle_wrap.cc
+++ b/src/handle_wrap.cc
@@ -108,6 +108,8 @@ HandleWrap::~HandleWrap() {
void HandleWrap::OnClose(uv_handle_t* handle) {
+ HandleScope scope(node_isolate);
+
HandleWrap* wrap = static_cast<HandleWrap*>(handle->data);
Environment* env = wrap->env();