]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
uninitialized variable
authorBrian Wellington <source@isc.org>
Tue, 29 May 2001 22:44:23 +0000 (22:44 +0000)
committerBrian Wellington <source@isc.org>
Tue, 29 May 2001 22:44:23 +0000 (22:44 +0000)
lib/dns/adb.c

index 8b80685d1ff5cd181d58aced78cba0e40cb7536f..4bf1b99557c450a5fa4c68fe24c0df3b01f34325 100644 (file)
@@ -15,7 +15,7 @@
  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: adb.c,v 1.162.2.6 2001/05/02 17:52:14 gson Exp $ */
+/* $Id: adb.c,v 1.162.2.7 2001/05/29 22:44:23 bwelling Exp $ */
 
 /*
  * Implementation notes
@@ -3841,7 +3841,7 @@ fetch_name_aaaa(dns_adbname_t *adbname) {
 static isc_result_t
 fetch_name_a6(dns_adbname_t *adbname, isc_boolean_t start_at_root) {
        isc_result_t result;
-       dns_adbfetch6_t *fetch;
+       dns_adbfetch6_t *fetch = NULL;
        dns_adb_t *adb;
        dns_name_t *name;
        dns_rdataset_t rdataset;