"spawned process is not wait()
ed on in all code paths" when ?
used in chain call before spawn()
#14911
Labels
C-bug
Category: Clippy is not doing the correct thing
I-false-positive
Issue: The lint was triggered on code it shouldn't have
Uh oh!
There was an error while loading. Please reload this page.
Summary
Clippy flag
command.spawn()
code when?
used in daisy-chain calls before the spawn got called and.expect
used on spawn invocation.Interestingly, changing
expect
to?
onspawn()
clear the the error:Lint Name
clippy::zombie_processes
Reproducer
I tried this code:
I expected to see this happen: no issue
Instead, this happened: "spawned process is not
wait()
ed on in all code paths" highlightingsend.try_clone()?
as offending part.Version
The text was updated successfully, but these errors were encountered: