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

index 969cd4853eaa9acbb1afc4b1f4348431465afbac..734aefdf9ee6f4f5d6bb16a88f2215c56b5c0745 100644 (file)
@@ -15,7 +15,7 @@
  * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: adb.c,v 1.177 2001/05/02 17:29:17 halley Exp $ */
+/* $Id: adb.c,v 1.178 2001/05/29 22:44:12 bwelling Exp $ */
 
 /*
  * Implementation notes
@@ -3809,7 +3809,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;