aboutsummaryrefslogtreecommitdiff
path: root/libnetfs
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2023-01-01 13:28:58 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2023-01-01 14:04:51 +0100
commit08de8baa4917b20644f9340452825bceadad6693 (patch)
tree38b958727f5dce62673b9d32b6bb27fba657d59e /libnetfs
parent6b8fa52806b2a7bb443ccf9153b5328b741f68db (diff)
downloadhurd-08de8baa4917b20644f9340452825bceadad6693.tar.gz
hurd-08de8baa4917b20644f9340452825bceadad6693.tar.bz2
hurd-08de8baa4917b20644f9340452825bceadad6693.zip
libnetfs: Fix dereferencing NULL on memory shortage
Diffstat (limited to 'libnetfs')
-rw-r--r--libnetfs/io-restrict-auth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libnetfs/io-restrict-auth.c b/libnetfs/io-restrict-auth.c
index e1fe79da..4ee77356 100644
--- a/libnetfs/io-restrict-auth.c
+++ b/libnetfs/io-restrict-auth.c
@@ -48,6 +48,7 @@ netfs_S_io_restrict_auth (struct protid *user,
{
*newport = ports_get_right (newpi);
*newporttype = MACH_MSG_TYPE_MAKE_SEND;
+ ports_port_deref (newpi);
}
else
{
@@ -56,6 +57,5 @@ netfs_S_io_restrict_auth (struct protid *user,
err = ENOMEM;
}
- ports_port_deref (newpi);
return err;
}