summaryrefslogtreecommitdiff
path: root/nDPIsrvd.c
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2023-11-20 14:32:11 +0100
committerToni Uhlig <matzeton@googlemail.com>2023-11-20 14:51:59 +0100
commitbb9f02719de6999e708b3c04c5c2f237653b9a58 (patch)
tree7b270d694582ffb8ba06b767e6a89f29980ea990 /nDPIsrvd.c
parentf38f1ec37f4c452ea96acbaea6f111807a50a78b (diff)
Added SonarCloud exclusions for third-party files and files lacking relevance.
* fixed two other "bugs" Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'nDPIsrvd.c')
-rw-r--r--nDPIsrvd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nDPIsrvd.c b/nDPIsrvd.c
index cb4c08a45..dd539fd73 100644
--- a/nDPIsrvd.c
+++ b/nDPIsrvd.c
@@ -1062,7 +1062,7 @@ static int new_connection(struct nio * const io, int eventfd)
pwsiz = BUFSIZ;
}
char buf[pwsiz];
- if (getpwuid_r(ucred.uid, &pwnam, &buf[0], pwsiz, &pwres) != 0)
+ if (getpwuid_r(ucred.uid, &pwnam, &buf[0], pwsiz, &pwres) != 0 || pwres == NULL)
{
logger(1, "Could not get passwd entry for user id %u", ucred.uid);
return 1;