summaryrefslogtreecommitdiffstats
path: root/src/cache.c
diff options
context:
space:
mode:
authorFlorian Westphal <fw@strlen.de>2022-01-15 20:00:49 +0100
committerFlorian Westphal <fw@strlen.de>2022-01-15 20:16:32 +0100
commita64ae40f2fd06dfa42c7d97ebb47fc04d4513466 (patch)
tree39bef5f1027f017b25883778c8100cb7247bcb34 /src/cache.c
parent71ae4e960357516c655bda9495db17bc0abea5b3 (diff)
src: silence compiler warnings
cache.c:504:22: warning: ‘chain’ may be used uninitialized in this function [-Wmaybe-uninitialized] cache.c:504:22: warning: ‘table’ may be used uninitialized in this function [-Wmaybe-uninitialized] erec.c:128:16: warning: ‘line’ may be used uninitialized in this function [-Wmaybe-uninitialized] optimize.c:524:9: warning: ‘line’ may be used uninitialized in this function [-Wmaybe-uninitialized] Fixes: 8ad4056e9182 ("erec: expose print_location() and line_location()") Fixes: afbd102211dc ("src: do not use the nft_cache_filter object from mnl.c") Fixes: fb298877ece2 ("src: add ruleset optimization infrastructure") Signed-off-by: Florian Westphal <fw@strlen.de>
Diffstat (limited to 'src/cache.c')
-rw-r--r--src/cache.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cache.c b/src/cache.c
index 630d6ae1..8e8387f9 100644
--- a/src/cache.c
+++ b/src/cache.c
@@ -493,8 +493,8 @@ static int rule_cache_dump(struct netlink_ctx *ctx, const struct handle *h,
const struct nft_cache_filter *filter)
{
struct nftnl_rule_list *rule_cache;
- const char *table;
- const char *chain;
+ const char *table = NULL;
+ const char *chain = NULL;
if (filter) {
table = filter->list.table;