2
0
mirror of https://github.com/boostorg/process.git synced 2026-01-19 04:22:15 +00:00

FIX(process): modify the internal logic call of resume without error code version.

This commit is contained in:
zhixingchen
2024-05-11 10:42:51 +08:00
committed by Klemens Morgenstern
parent 406cd3ecf3
commit 193384a450

View File

@@ -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");
}