]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
pullup:
authorAndreas Gustafsson <source@isc.org>
Thu, 26 Apr 2001 18:20:47 +0000 (18:20 +0000)
committerAndreas Gustafsson <source@isc.org>
Thu, 26 Apr 2001 18:20:47 +0000 (18:20 +0000)
uninitialized variables [RT #1188]

bin/dig/dighost.c

index 95e3ca32d4aff5ad4484289da2b8eb202d9f084e..f71b045e45d2627253097e568a1f3edadc9a921b 100644 (file)
@@ -15,7 +15,7 @@
  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: dighost.c,v 1.174.2.7 2001/03/14 01:25:37 bwelling Exp $ */
+/* $Id: dighost.c,v 1.174.2.8 2001/04/26 18:20:47 gson Exp $ */
 
 /*
  * Notice to programmers:  Do not use this code as an example of how to
@@ -1554,6 +1554,8 @@ setup_lookup(dig_lookup_t *lookup) {
                query->first_pass = ISC_TRUE;
                query->first_soa_rcvd = ISC_FALSE;
                query->second_rr_rcvd = ISC_FALSE;
+               query->first_repeat_rcvd = ISC_FALSE;
+               query->first_rr_serial = 0;
                query->second_rr_serial = 0;
                query->servname = serv->servername;
                query->rr_count = 0;