From 7fdee6fc7f623b05719978cad8706a9cc0ad48cc Mon Sep 17 00:00:00 2001 From: bert hubert Date: Sun, 4 Sep 2016 21:04:00 +0200 Subject: [PATCH] init some DNSZoneRecord members --- pdns/dnsparser.hh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pdns/dnsparser.hh b/pdns/dnsparser.hh index f0620ed3e2..a3b0771f44 100644 --- a/pdns/dnsparser.hh +++ b/pdns/dnsparser.hh @@ -330,11 +330,11 @@ struct DNSRecord struct DNSZoneRecord { - int domain_id; - uint8_t scopeMask; - int signttl; + int domain_id{-1}; + uint8_t scopeMask{0}; + int signttl{0}; DNSName wildcardname; - bool auth; + bool auth{true}; DNSRecord dr; }; -- 2.47.2