Remove unnecessary initialization (scan-build)

This commit is contained in:
Willem Toorop 2017-06-22 12:43:33 +02:00
parent e2f1d3badb
commit 69b3f6f558
1 changed files with 2 additions and 2 deletions

View File

@ -667,8 +667,8 @@ uint16_t _getdns_parse_xml_trust_anchors_buf(
void _getdns_context_equip_with_anchor(getdns_context *context, time_t now) void _getdns_context_equip_with_anchor(getdns_context *context, time_t now)
{ {
uint8_t xml_spc[4096], *xml_data = xml_spc; uint8_t xml_spc[4096], *xml_data;
uint8_t p7s_spc[4096], *p7s_data = p7s_spc; uint8_t p7s_spc[4096], *p7s_data;
size_t xml_len, p7s_len; size_t xml_len, p7s_len;
BIO *xml = NULL, *p7s = NULL, *crt = NULL; BIO *xml = NULL, *p7s = NULL, *crt = NULL;