Skip to content

Commit 564c18e

Browse files
addaleaxMylesBorins
authored andcommittedNov 21, 2019
src: remove HandleWrap instances from list once closed
This allows keeping `BaseObjectPtr`s to `HandleWrap` instances. Previously, the pointer kept the `HandleWrap` object alive, leaving the Environment cleanup code that waits for the handle list to drain in a busy loop, because only the `HandleWrap` destructor removed the item from the list. Refs: nodejs/quic#165 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Daniel Bevenius <[email protected]> PR-URL: #30374 Refs: nodejs/quic#141 Refs: nodejs/quic#149 Refs: nodejs/quic#141 Reviewed-By: David Carlier <[email protected]>
1 parent 4222f24 commit 564c18e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎src/handle_wrap.cc

+1
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ void HandleWrap::OnClose(uv_handle_t* handle) {
128128
wrap->state_ = kClosed;
129129

130130
wrap->OnClose();
131+
wrap->handle_wrap_queue_.Remove();
131132

132133
if (!wrap->persistent().IsEmpty() &&
133134
wrap->object()->Has(env->context(), env->handle_onclose_symbol())

0 commit comments

Comments
 (0)