diff options
author | Etienne Brateau <etienne.brateau@gmail.com> | 2024-03-12 23:08:42 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2024-03-12 23:15:08 +0100 |
commit | 64559905b30334fdae1b94b775a4a98ee0126d0c (patch) | |
tree | e8a7a47b354bf78428bd8287a7af99fd3f5486c3 /console-client | |
parent | 623b4ff33a5c8f7ea494f56ac72d947efeedc971 (diff) | |
download | hurd-64559905b30334fdae1b94b775a4a98ee0126d0c.tar.gz hurd-64559905b30334fdae1b94b775a4a98ee0126d0c.tar.bz2 hurd-64559905b30334fdae1b94b775a4a98ee0126d0c.zip |
console-client: Add another missing error check
Message-ID: <20240312220842.79072-1-etienne.brateau@gmail.com>
Diffstat (limited to 'console-client')
-rw-r--r-- | console-client/trans.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/console-client/trans.c b/console-client/trans.c index 0c961c2f..b7d56cb0 100644 --- a/console-client/trans.c +++ b/console-client/trans.c @@ -892,6 +892,8 @@ console_setup_node (char *path) error (1, err, "Cannot map time"); err = ports_create_port (netfs_control_class, netfs_port_bucket, sizeof (struct port_info), &newpi); + if (err) + error (1, err, "Cannot create port"); right = ports_get_send_right (newpi); err = file_set_translator (node, 0, FS_TRANS_EXCL | FS_TRANS_SET, 0, 0, 0, right, MACH_MSG_TYPE_COPY_SEND); |