diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-01-01 11:54:04 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-01-01 11:54:06 +0100 |
commit | c851c4a857aec23e21ca8769b92e862e6471c852 (patch) | |
tree | dbe4cd497e1dfc18a6a91aee40abb27d105f9b2b /term | |
parent | 17df34e290602b37a17fdf3644b2e1faecb6cc4e (diff) | |
download | hurd-c851c4a857aec23e21ca8769b92e862e6471c852.tar.gz hurd-c851c4a857aec23e21ca8769b92e862e6471c852.tar.bz2 hurd-c851c4a857aec23e21ca8769b92e862e6471c852.zip |
term: Drop spurious deref
That was a remnant of manual port lookup.
Diffstat (limited to 'term')
-rw-r--r-- | term/users.c | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/term/users.c b/term/users.c index 59f02b66..b7429a4f 100644 --- a/term/users.c +++ b/term/users.c @@ -2181,19 +2181,12 @@ S_term_get_peername (struct trivfs_protid *cred, return EOPNOTSUPP; if (!cred || (cred->pi.class != tty_class && cred->pi.class != pty_class)) - { - if (cred) - ports_port_deref (cred); - return EOPNOTSUPP; - } + return EOPNOTSUPP; peer = (cred->pi.class == tty_class) ? ptyctl : termctl; if (bottom != &ptyio_bottom || !peer->hook) - { - ports_port_deref (cred); - return ENOENT; - } + return ENOENT; strcpy (name, (char *) peer->hook); |