summaryrefslogtreecommitdiff
path: root/src/handle_wrap.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/handle_wrap.h')
-rw-r--r--src/handle_wrap.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/handle_wrap.h b/src/handle_wrap.h
index fe3c5a8d9d..ef37cf9e34 100644
--- a/src/handle_wrap.h
+++ b/src/handle_wrap.h
@@ -38,15 +38,11 @@ class HandleWrap : public AsyncWrap {
static void Unrefed(const v8::FunctionCallbackInfo<v8::Value>& args);
static inline bool IsAlive(const HandleWrap* wrap) {
- // XXX(bnoordhuis) It's debatable whether only kInitialized should
- // count as alive but it's compatible with the check that it replaces.
- return wrap != nullptr && wrap->state_ == kInitialized;
+ return wrap != nullptr && wrap->state_ != kClosed;
}
static inline bool HasRef(const HandleWrap* wrap) {
- return wrap != nullptr &&
- wrap->state_ != kClosed &&
- uv_has_ref(wrap->GetHandle());
+ return IsAlive(wrap) && uv_has_ref(wrap->GetHandle());
}
inline uv_handle_t* GetHandle() const { return handle__; }