Skip to content

Commit

Permalink
deps: uvwasi: cherry-pick 9e75217
Browse files Browse the repository at this point in the history
Original commit message:

    poll_oneoff: add missing uv_run() in cleanup

    This allows ASAN to pass.

PR-URL: #33521
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
  • Loading branch information
cjihrig authored and codebytere committed Jul 8, 2020
1 parent 48035a2 commit 9ee9688
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions deps/uvwasi/src/poll_oneoff.c
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,8 @@ uvwasi_errno_t uvwasi__poll_oneoff_state_cleanup(
for (i = 0; i < state->handle_cnt; i++)
uv_close((uv_handle_t*) &state->poll_handles[i], NULL);

uv_run(&state->loop, UV_RUN_NOWAIT);

state->max_fds = 0;
state->fdevent_cnt = 0;
state->handle_cnt = 0;
Expand Down

0 comments on commit 9ee9688

Please sign in to comment.