Browse Source

handle_wrap: don't abort if wrap == NULL

After a disconnect, the internal pointer of the parent/child channel is set to
NULL. That's not an error so don't abort().
v0.9.3-release
Ben Noordhuis 13 years ago
parent
commit
17ef062db1
  1. 22
      src/handle_wrap.cc

22
src/handle_wrap.cc

@ -23,6 +23,12 @@
#include "ngx-queue.h"
#include "handle_wrap.h"
#define UNWRAP_NO_ABORT(type) \
assert(!args.Holder().IsEmpty()); \
assert(args.Holder()->InternalFieldCount() > 0); \
type* wrap = \
static_cast<type*>(args.Holder()->GetPointerFromInternalField(0));
namespace node {
using v8::Array;
@ -53,10 +59,12 @@ void HandleWrap::Initialize(Handle<Object> target) {
Handle<Value> HandleWrap::Ref(const Arguments& args) {
HandleScope scope;
UNWRAP(HandleWrap)
UNWRAP_NO_ABORT(HandleWrap)
uv_ref(wrap->handle__);
wrap->unref_ = false;
if (wrap) {
uv_ref(wrap->handle__);
wrap->unref_ = false;
}
return v8::Undefined();
}
@ -65,10 +73,12 @@ Handle<Value> HandleWrap::Ref(const Arguments& args) {
Handle<Value> HandleWrap::Unref(const Arguments& args) {
HandleScope scope;
UNWRAP(HandleWrap)
UNWRAP_NO_ABORT(HandleWrap)
uv_unref(wrap->handle__);
wrap->unref_ = true;
if (wrap) {
uv_unref(wrap->handle__);
wrap->unref_ = true;
}
return v8::Undefined();
}

Loading…
Cancel
Save