diff options
author | Andrew Yourtchenko <ayourtch@gmail.com> | 2022-08-18 12:17:05 +0000 |
---|---|---|
committer | Matthew Smith <mgsmith@netgate.com> | 2022-08-18 14:09:20 +0000 |
commit | 635930f5bb2090d258fc284a5da8e63159c1a5dd (patch) | |
tree | 7ea65052eb5b668ad5874cadecfac8bfb9997160 /src/plugins/dns | |
parent | cc488fc766cfbafbe52471a2fa0c8b7aa785ff86 (diff) |
dns: fix coverity 249189, 249198
Zero-initialize the temporary struct on stack.
Type: fix
Signed-off-by: Andrew Yourtchenko <ayourtch@gmail.com>
Change-Id: I89ced4cca8e832827fe054e2e60986de5910360c
Diffstat (limited to 'src/plugins/dns')
-rw-r--r-- | src/plugins/dns/dns.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/dns/dns.c b/src/plugins/dns/dns.c index ac6d1229441..1839379ece3 100644 --- a/src/plugins/dns/dns.c +++ b/src/plugins/dns/dns.c @@ -1370,7 +1370,7 @@ vl_api_dns_resolve_name_t_handler (vl_api_dns_resolve_name_t * mp) dns_main_t *dm = &dns_main; vl_api_dns_resolve_name_reply_t *rmp; dns_cache_entry_t *ep = 0; - dns_pending_request_t _t0, *t0 = &_t0; + dns_pending_request_t _t0 = { 0 }, *t0 = &_t0; int rv; dns_resolve_name_t rn; @@ -1416,7 +1416,7 @@ vl_api_dns_resolve_ip_t_handler (vl_api_dns_resolve_ip_t * mp) int i, len; u8 *lookup_name = 0; u8 digit, nybble; - dns_pending_request_t _t0, *t0 = &_t0; + dns_pending_request_t _t0 = { 0 }, *t0 = &_t0; if (mp->is_ip6) { |