From 4a2f65ad8a26261e758d9682d88eb29395422fb9 Mon Sep 17 00:00:00 2001 From: Brian Wellington Date: Tue, 2 Nov 1999 23:40:05 +0000 Subject: [PATCH] uninitialized variable --- lib/dns/tsig.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/dns/tsig.c b/lib/dns/tsig.c index 2186deb66c..39e60251c6 100644 --- a/lib/dns/tsig.c +++ b/lib/dns/tsig.c @@ -16,7 +16,7 @@ */ /* - * $Id: tsig.c,v 1.29 1999/11/02 19:55:44 bwelling Exp $ + * $Id: tsig.c,v 1.30 1999/11/02 23:40:05 bwelling Exp $ * Principal Author: Brian Wellington */ @@ -119,6 +119,8 @@ dns_tsigkey_create(dns_name_t *name, dns_name_t *algorithm, goto cleanup_algorithm; } } + else + tkey->creator = NULL; isc_buffer_init(&nameb, namestr, sizeof(namestr) - 1, ISC_BUFFERTYPE_TEXT);