diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 2001-08-15 21:02:08 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 2001-08-15 21:02:08 +0000 |
commit | 904acd6d6850c87dd2ce8735a548b7a0398c99d0 (patch) | |
tree | 92e655d7c1522a0e73e5dffd4456ef407e8509fd /ace/WFMO_Reactor.cpp | |
parent | a4c4eb532846f36e8c67dd2ca047eb3a2469d173 (diff) | |
download | ATCD-904acd6d6850c87dd2ce8735a548b7a0398c99d0.tar.gz |
ChangeLogTag:Wed Aug 15 15:50:38 2001 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu>
Diffstat (limited to 'ace/WFMO_Reactor.cpp')
-rw-r--r-- | ace/WFMO_Reactor.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
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 |