We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23f2437 commit 6fbf7bfCopy full SHA for 6fbf7bf
1 file changed
src/hx/libs/asys/libuv/net/LibuvTcpServer.cpp
@@ -183,6 +183,7 @@ hx::asys::libuv::net::LibuvTcpServerImpl::LibuvTcpServerImpl(Dynamic cbSuccess,
183
void hx::asys::libuv::net::LibuvTcpServerImpl::cleanup(uv_handle_t* handle)
184
{
185
auto spData = std::unique_ptr<LibuvTcpServerImpl>(reinterpret_cast<LibuvTcpServerImpl*>(handle->data));
186
+ auto gcZone = hx::AutoGCZone();
187
auto cbFailure = Dynamic(spData->cbFailure.rooted);
188
189
cbFailure(hx::asys::libuv::uv_err_to_enum(spData->status));
0 commit comments