Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/process.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ namespace proc {

// We always call terminate() even if we waited successfully for all processes above.
// This ensures the process group state is consistent with the OS in boost.
group.terminate();
std::error_code ec;
group.terminate(ec);
group.detach();
}

Expand Down
4 changes: 0 additions & 4 deletions src/rtsp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -588,10 +588,6 @@ namespace rtsp_stream {
i++;
}
}

if (all && !ios.stopped()) {
ios.stop();
}
}

/**
Expand Down