mirror of
https://github.com/nushell/nushell.git
synced 2024-11-25 01:43:47 +01:00
Fix panic when encountering ENOTTY. (#7001)
This commit is contained in:
parent
36ae384fb3
commit
f1bde69131
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 New Issue
Block a user