Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: add uv_loop_close when object release to fix crash #35338

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions shell/common/node_bindings.cc
Expand Up @@ -135,6 +135,7 @@ void stop_and_close_uv_loop(uv_loop_t* loop) {
break;

DCHECK_EQ(0, uv_loop_alive(loop));
uv_loop_close(loop);
}

bool g_is_initialized = false;
Expand Down