summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Dickson <steved@redhat.com>2023-01-04 12:04:09 -0500
committerSteve Dickson <steved@redhat.com>2023-01-10 09:48:36 -0500
commit631c6aa34aae7328dc297210fd2de2d5364c697f (patch)
tree6f679ffeafa3719c6c5086ffa66dca524997511a
parent2c0b524983925ebd6b8ab8b7952fba2aea41c94d (diff)
downloadnfs-utils-631c6aa34aae7328dc297210fd2de2d5364c697f.tar.gz
Covscan Scan: Wrong Check of Return Value
Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=2151966 Signed-off-by: Steve Dickson <steved@redhat.com>
-rw-r--r--support/export/client.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/support/export/client.c b/support/export/client.c
index ea4f89d..79164fe 100644
--- a/support/export/client.c
+++ b/support/export/client.c
@@ -699,6 +699,9 @@ check_netgroup(const nfs_client *clp, const struct addrinfo *ai)
/* check whether the IP itself is in the netgroup */
ip = calloc(INET6_ADDRSTRLEN, 1);
+ if (ip == NULL)
+ goto out;
+
if (inet_ntop(ai->ai_family, &(((struct sockaddr_in *)ai->ai_addr)->sin_addr), ip, INET6_ADDRSTRLEN) == ip) {
if (innetgr(netgroup, ip, NULL, NULL)) {
free(hname);