aboutgitcodebugslistschat
path: root/conf.c
diff options
context:
space:
mode:
authorStefano Brivio <sbrivio@redhat.com>2023-02-27 04:06:19 +0100
committerStefano Brivio <sbrivio@redhat.com>2023-02-27 18:55:57 +0100
commitd2df7632321c473cd57064e2350b219fbc3f6677 (patch)
treeec81d4c0e51397e48f95f43d6180fb1bac69e3b6 /conf.c
parentfb05a713789fd9c20d0432f023ce26f3c5b94251 (diff)
downloadpasst-d2df7632321c473cd57064e2350b219fbc3f6677.tar
passt-d2df7632321c473cd57064e2350b219fbc3f6677.tar.gz
passt-d2df7632321c473cd57064e2350b219fbc3f6677.tar.bz2
passt-d2df7632321c473cd57064e2350b219fbc3f6677.tar.lz
passt-d2df7632321c473cd57064e2350b219fbc3f6677.tar.xz
passt-d2df7632321c473cd57064e2350b219fbc3f6677.tar.zst
passt-d2df7632321c473cd57064e2350b219fbc3f6677.zip
log, conf, tap: Define die() as err() plus exit(), drop cppcheck workarounds
If we define die() as a variadic macro, passing __VA_ARGS__ to err(), and calling exit() outside err() itself, we can drop the workarounds introduced in commit 36f0199f6ef4 ("conf, tap: Silence two false positive invalidFunctionArg from cppcheck"). Suggested-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Stefano Brivio <sbrivio@redhat.com> Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'conf.c')
-rw-r--r--conf.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/conf.c b/conf.c
index 37f25d6..0e512f4 100644
--- a/conf.c
+++ b/conf.c
@@ -1064,9 +1064,6 @@ static void conf_ugid(char *runas, uid_t *uid, gid_t *gid)
if ((fd = open("/proc/self/uid_map", O_RDONLY | O_CLOEXEC)) < 0) {
die("Can't determine if we're in init namespace: %s",
strerror(errno));
-
- /* Silence cppcheck's invalidFunctionArg for 'fd' in read() */
- return;
}
if (read(fd, buf, BUFSIZ) != sizeof(root_uid_map) ||