From 960d37edc3f4e4d99afd26feab9bed4aa88a499c Mon Sep 17 00:00:00 2001 From: Brian Wellington Date: Fri, 25 Aug 2000 18:58:35 +0000 Subject: [PATCH] Setting event->ev_sender to a bogus non-null value is no longer necessary. --- lib/isc/unix/app.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/isc/unix/app.c b/lib/isc/unix/app.c index 53f373736c..a6edcc208b 100644 --- a/lib/isc/unix/app.c +++ b/lib/isc/unix/app.c @@ -15,7 +15,7 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: app.c,v 1.23 2000/08/01 01:31:11 tale Exp $ */ +/* $Id: app.c,v 1.24 2000/08/25 18:58:35 bwelling Exp $ */ #include @@ -275,7 +275,7 @@ isc_app_run(void) { next_event = ISC_LIST_NEXT(event, ev_link); ISC_LIST_UNLINK(on_run, event, ev_link); task = event->ev_sender; - event->ev_sender = (void *)&running; + event->ev_sender = NULL; isc_task_sendanddetach(&task, &event); }