mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-10 20:00:00 -04:00
301. [bug] uninitalised pointer host:printmessage(). (RT #159)
This commit is contained in:
parent
989000eadd
commit
1318ddb52d
2 changed files with 4 additions and 2 deletions
2
CHANGES
2
CHANGES
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue