aboutgitcodebugslistschat
diff options
context:
space:
mode:
authorStefano Brivio <sbrivio@redhat.com>2023-02-16 19:19:23 +0100
committerStefano Brivio <sbrivio@redhat.com>2023-02-16 19:19:23 +0100
commit36f0199f6ef4183837ae72551a778a4054de43fd (patch)
tree1e0bbf87b6daaf1b10e256c356871b015b8d8795
parent89e0fbfaa777ef28b5269421cc6770589145d4e6 (diff)
downloadpasst-36f0199f6ef4183837ae72551a778a4054de43fd.tar
passt-36f0199f6ef4183837ae72551a778a4054de43fd.tar.gz
passt-36f0199f6ef4183837ae72551a778a4054de43fd.tar.bz2
passt-36f0199f6ef4183837ae72551a778a4054de43fd.tar.lz
passt-36f0199f6ef4183837ae72551a778a4054de43fd.tar.xz
passt-36f0199f6ef4183837ae72551a778a4054de43fd.tar.zst
passt-36f0199f6ef4183837ae72551a778a4054de43fd.zip
conf, tap: Silence two false positive invalidFunctionArg from cppcheck
The newly introduced die() calls exit(), but cppcheck doesn't see it and warns about possibly invalid arguments used after the check which triggers die(). Add return statements to silence the warnings. Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
-rw-r--r--conf.c3
-rw-r--r--tap.c6
2 files changed, 8 insertions, 1 deletions
diff --git a/conf.c b/conf.c
index 675d961..5426c9b 100644
--- a/conf.c
+++ b/conf.c
@@ -1036,6 +1036,9 @@ 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) ||
diff --git a/tap.c b/tap.c
index 88eed88..d6f962e 100644
--- a/tap.c
+++ b/tap.c
@@ -1037,9 +1037,13 @@ static void tap_sock_unix_init(struct ctx *c)
snprintf(path, UNIX_PATH_MAX - 1, UNIX_SOCK_PATH, i);
ex = socket(AF_UNIX, SOCK_STREAM | SOCK_NONBLOCK, 0);
- if (ex < 0)
+ if (ex < 0) {
die("UNIX domain socket check: %s", strerror(errno));
+ /* Silence cppcheck's invalidFunctionArg for 'ex' */
+ return;
+ }
+
ret = connect(ex, (const struct sockaddr *)&addr, sizeof(addr));
if (!ret || (errno != ENOENT && errno != ECONNREFUSED &&
errno != EACCES)) {