mirror of
https://github.com/nushell/nushell
synced 2024-12-26 04:53:09 +00:00
Fix panic when encountering ENOTTY. (#7001)
This commit is contained in:
parent
36ae384fb3
commit
f1bde69131
1 changed files with 11 additions and 10 deletions
21
src/main.rs
21
src/main.rs
|
@ -45,17 +45,18 @@ fn take_control(interactive: bool) {
|
|||
};
|
||||
|
||||
let shell_pgid = unistd::getpgrp();
|
||||
let owner_pgid = unistd::tcgetpgrp(nix::libc::STDIN_FILENO).expect("tcgetpgrp");
|
||||
|
||||
// Common case, nothing to do
|
||||
if owner_pgid == shell_pgid {
|
||||
return;
|
||||
}
|
||||
|
||||
// This can apparently happen with sudo: https://github.com/fish-shell/fish-shell/issues/7388
|
||||
if owner_pgid == unistd::getpid() {
|
||||
let _ = unistd::setpgid(owner_pgid, owner_pgid);
|
||||
return;
|
||||
match unistd::tcgetpgrp(nix::libc::STDIN_FILENO) {
|
||||
Ok(owner_pgid) if owner_pgid == shell_pgid => {
|
||||
// Common case, nothing to do
|
||||
return;
|
||||
}
|
||||
Ok(owner_pgid) if owner_pgid == unistd::getpid() => {
|
||||
// This can apparently happen with sudo: https://github.com/fish-shell/fish-shell/issues/7388
|
||||
let _ = unistd::setpgid(owner_pgid, owner_pgid);
|
||||
return;
|
||||
}
|
||||
_ => (),
|
||||
}
|
||||
|
||||
// Reset all signal handlers to default
|
||||
|
|
Loading…
Reference in a new issue