From 5195f9319908e7e65be069d8474243badaa814bf Mon Sep 17 00:00:00 2001 From: Andreas Gustafsson Date: Fri, 30 Jul 1999 13:33:47 +0000 Subject: [PATCH] event->sender was bogus pointer --- lib/dns/tcpmsg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/dns/tcpmsg.c b/lib/dns/tcpmsg.c index 922f2d7481..0af74fe53f 100644 --- a/lib/dns/tcpmsg.c +++ b/lib/dns/tcpmsg.c @@ -183,7 +183,7 @@ dns_tcpmsg_readmessage(dns_tcpmsg_t *tcpmsg, tcpmsg->result = ISC_R_UNEXPECTED; /* unknown right now */ ISC_EVENT_INIT(&tcpmsg->event, sizeof(isc_event_t), 0, 0, - DNS_EVENT_TCPMSG, action, arg, &tcpmsg, + DNS_EVENT_TCPMSG, action, arg, tcpmsg, NULL, NULL); region.base = (unsigned char *)&tcpmsg->size;