301. [bug] uninitalised pointer host:printmessage(). (RT #159)

This commit is contained in:
Mark Andrews 2000-07-03 05:10:14 +00:00
parent 989000eadd
commit 1318ddb52d
2 changed files with 4 additions and 2 deletions

View file

@ -1,3 +1,5 @@
301. [bug] uninitalised pointer host:printmessage(). (RT #159)
300. [bug] Using both <isc/net.h> and <lwres/net.h> didn't work
on platforms lacking IPv6 because each included their
own ipv6 header file for the missing definitions. Now

View file

@ -15,7 +15,7 @@
* SOFTWARE.
*/
/* $Id: host.c,v 1.32 2000/06/30 14:11:48 mws Exp $ */
/* $Id: host.c,v 1.33 2000/07/03 05:10:14 marka Exp $ */
#include <config.h>
#include <stdlib.h>
@ -411,7 +411,7 @@ printmessage(dig_query_t *query, dns_message_t *msg, isc_boolean_t headers) {
dns_rdataset_t *opt, *tsig = NULL;
dns_name_t *tsigname;
isc_result_t result = ISC_R_SUCCESS;
isc_buffer_t *b;
isc_buffer_t *b = NULL;
isc_region_t r;
UNUSED (headers);