From b20c1601ebeb7d37c2580bd2b9949381a2e391b6 Mon Sep 17 00:00:00 2001 From: bala Date: Sun, 28 Apr 2002 13:40:38 +0000 Subject: ChangeLogTag:Sun Apr 28 08:54:07 2002 Balachandran Natarajan --- TAO/ChangeLogs/ChangeLog-02a | 6 ++++++ TAO/tao/ORB_Core.cpp | 3 +++ 2 files changed, 9 insertions(+) (limited to 'TAO') diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a index 8c7a118109b..a5f86e1f336 100644 --- a/TAO/ChangeLogs/ChangeLog-02a +++ b/TAO/ChangeLogs/ChangeLog-02a @@ -1,3 +1,9 @@ +Sun Apr 28 08:54:07 2002 Balachandran Natarajan + + * tao/ORB_Core.cpp (shutdown): Added a #if (TAO_HAS_INTERCEPTORS + ==1) around the place where pi_current_ is set to null. This + should fix build errors in the minimum corba builds. + Sun Apr 28 08:50:18 2002 Balachandran Natarajan * tao/LF_Connect_Strategy.cpp: diff --git a/TAO/tao/ORB_Core.cpp b/TAO/tao/ORB_Core.cpp index ec8412b8202..3c6703144fc 100644 --- a/TAO/tao/ORB_Core.cpp +++ b/TAO/tao/ORB_Core.cpp @@ -1824,7 +1824,10 @@ TAO_ORB_Core::shutdown (CORBA::Boolean wait_for_completion // contains references to objects, which themselves may contain // reference to this ORB. this->object_ref_table_.destroy (); + +#if (TAO_HAS_INTERCEPTORS == 1) this->pi_current_ = 0; // For the sake of consistency. +#endif /* TAO_HAS_INTERCEPTORS == 1 */ } } -- cgit v1.2.1