From b8387bb0b0a2e53a5f74814625b374b3b4b0c932 Mon Sep 17 00:00:00 2001 From: Phil Sutter Date: Thu, 21 Sep 2017 15:10:39 +0200 Subject: main: Fix for return of uninitialized variable in nft_run_cmd_from_filename() If scanner_read_file() failed, the function would return an uninitialized value. Fixes: 3db28321b64a6 ("src: add nft_run_cmd_*() functions") Signed-off-by: Phil Sutter Signed-off-by: Pablo Neira Ayuso --- src/main.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/main.c b/src/main.c index 702ef302..8e7b586d 100644 --- a/src/main.c +++ b/src/main.c @@ -351,8 +351,10 @@ static int nft_run_cmd_from_filename(struct nft_ctx *nft, const char *filename) parser_init(nft->nf_sock, &nft->cache, &state, &msgs, nft->debug_mask); scanner = scanner_init(&state); - if (scanner_read_file(scanner, filename, &internal_location) < 0) + if (scanner_read_file(scanner, filename, &internal_location) < 0) { + rc = NFT_EXIT_FAILURE; goto err; + } if (nft_run(nft, nft->nf_sock, scanner, &state, &msgs) != 0) rc = NFT_EXIT_FAILURE; -- cgit v1.2.3