Skip to content

Commit bac74b6

Browse files
authored
Rollup merge of rust-lang#131833 - c-ryan747:patch-1, r=Noratrieb
Add `must_use` to `CommandExt::exec` [CommandExt::exec](https://fburl.com/0qhpo7nu) returns a `std::io::Error` in the case exec fails, but its not currently marked as `must_use` making it easy to accidentally ignore it. This PR adds the `must_use` attributed here as i think it fits the definition in the guide of [When to add #[must_use]](https://std-dev-guide.rust-lang.org/policy/must-use.html#when-to-add-must_use)
2 parents 0d7c889 + d73f924 commit bac74b6

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

std/src/os/unix/process.rs

+1
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,7 @@ pub trait CommandExt: Sealed {
154154
/// required to gracefully handle errors it is recommended to use the
155155
/// cross-platform `spawn` instead.
156156
#[stable(feature = "process_exec2", since = "1.9.0")]
157+
#[must_use]
157158
fn exec(&mut self) -> io::Error;
158159

159160
/// Set executable argument

0 commit comments

Comments
 (0)