Skip to content

Commit

Permalink
FIX(process): modify the internal logic call of resume without error …
Browse files Browse the repository at this point in the history
…code version.
  • Loading branch information
zhixingchen authored and klemens-morgenstern committed May 11, 2024
1 parent 406cd3e commit 193384a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/boost/process/v2/detail/process_handle_windows.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ struct basic_process_handle_win
void resume()
{
error_code ec;
suspend(ec);
resume(ec);
if (ec)
detail::throw_error(ec, "resume");
}
Expand Down

0 comments on commit 193384a

Please sign in to comment.