diff --git a/src/stream_wrap.cc b/src/stream_wrap.cc index 544c1f8cef..fb6edbc3a3 100644 --- a/src/stream_wrap.cc +++ b/src/stream_wrap.cc @@ -122,7 +122,7 @@ Handle StreamWrap::GetFD(Local, const AccessorInfo& args) { return v8::Null(); #else HandleScope scope; - UNWRAP(StreamWrap) + UNWRAP_NO_ABORT(StreamWrap) int fd = -1; if (wrap != NULL && wrap->stream_ != NULL) fd = wrap->stream_->io_watcher.fd; return scope.Close(Integer::New(fd));