summaryrefslogtreecommitdiffstats
path: root/src/expect/api.c
diff options
context:
space:
mode:
authorPhil Sutter <phil@nwl.cc>2022-03-25 14:55:53 +0100
committerPhil Sutter <phil@nwl.cc>2022-03-29 23:31:03 +0200
commit86f5bdc2a85b208053e7361ccd575e4eb3c853a3 (patch)
tree554e84c61e51afabb0bd421377908ff2dddb33e2 /src/expect/api.c
parent21ee35dde73aec5eba35290587d479218c6dd824 (diff)
expect/conntrack: Avoid spurious covscan overrun warning
It doesn't like how memset() is called for a struct nfnlhdr pointer with large size value. Pass void pointers instead. This also removes the call from __build_{expect,conntrack}() which is duplicate in __build_query_{exp,ct}() code-path. Signed-off-by: Phil Sutter <phil@nwl.cc>
Diffstat (limited to 'src/expect/api.c')
-rw-r--r--src/expect/api.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/expect/api.c b/src/expect/api.c
index 39cd092..b100c72 100644
--- a/src/expect/api.c
+++ b/src/expect/api.c
@@ -513,6 +513,8 @@ int nfexp_build_expect(struct nfnl_subsys_handle *ssh,
assert(req != NULL);
assert(exp != NULL);
+ memset(req, 0, size);
+
return __build_expect(ssh, req, size, type, flags, exp);
}
@@ -546,7 +548,7 @@ __build_query_exp(struct nfnl_subsys_handle *ssh,
assert(data != NULL);
assert(req != NULL);
- memset(req, 0, size);
+ memset(buffer, 0, size);
switch(qt) {
case NFCT_Q_CREATE: