From 904acd6d6850c87dd2ce8735a548b7a0398c99d0 Mon Sep 17 00:00:00 2001 From: schmidt Date: Wed, 15 Aug 2001 21:02:08 +0000 Subject: ChangeLogTag:Wed Aug 15 15:50:38 2001 Douglas C. Schmidt --- ace/WFMO_Reactor.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'ace/WFMO_Reactor.cpp') diff --git a/ace/WFMO_Reactor.cpp b/ace/WFMO_Reactor.cpp index c65a6dee4ae..81359ee54a5 100644 --- a/ace/WFMO_Reactor.cpp +++ b/ace/WFMO_Reactor.cpp @@ -2497,7 +2497,10 @@ ACE_WFMO_Reactor::purge_pending_notifications (ACE_Event_Handler *eh, ACE_Reactor_Mask mask) { ACE_TRACE ("ACE_WFMO_Reactor::purge_pending_notifications"); - return this->notify_handler_->purge_pending_notifications (eh, mask); + if (this->notify_handler_ == 0) + return 0; + else + return this->notify_handler_->purge_pending_notifications (eh, mask); } int -- cgit v1.2.1