Skip to content

Commit

Permalink
Changed bool to false when closing
Browse files Browse the repository at this point in the history
  • Loading branch information
caldog20 committed Dec 18, 2022
1 parent 22cf8ae commit 6d1eaa6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/support/uvfile.cc
Original file line number Diff line number Diff line change
Expand Up @@ -879,7 +879,7 @@ void PCSX::UvFifoListener::start(unsigned port, uv_loop_t *loop, uv_async_t *asy
} else {
uv_close(reinterpret_cast<uv_handle_t *>(tcp),
[](uv_handle_t *handle) { delete reinterpret_cast<uv_tcp_t *>(handle); });
listener->m_listening = true;
listener->m_listening = false;
}
});
if (result != 0) {
Expand Down

0 comments on commit 6d1eaa6

Please sign in to comment.