Allow ObjectWrap destructors before Wrap()

v0.7.4-release
Ryan Dahl 2010-06-04 14:23:45 -07:00
parent 9e8df0e836
commit 935f8437fd
1 changed files with 6 additions and 3 deletions

View File

@ -13,9 +13,12 @@ class ObjectWrap {
}
virtual ~ObjectWrap ( ) {
handle_->SetInternalField(0, v8::Undefined());
handle_.Dispose();
handle_.Clear();
if (!handle_.IsEmpty()) {
assert(handle_.IsNearDeath());
handle_->SetInternalField(0, v8::Undefined());
handle_.Dispose();
handle_.Clear();
}
}
template <class T>