summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2003-08-02 03:47:42 +0000
committerbala <balanatarajan@users.noreply.github.com>2003-08-02 03:47:42 +0000
commit9ed41e12d851309ce4378e7d6a75e0a55aa2b359 (patch)
tree886b9d14a261050688a22b1cf124f939e0bdc703
parent7373d4fff764d7c11e3122359fc29aaee3f8c5cf (diff)
downloadATCD-9ed41e12d851309ce4378e7d6a75e0a55aa2b359.tar.gz
ChangeLogTag:Fri Aug 1 22:45:56 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
-rw-r--r--TAO/ChangeLog7
-rw-r--r--TAO/tao/ORB_Core.i2
2 files changed, 8 insertions, 1 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index d00ec5833ed..2a546f3cef3 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,10 @@
+Fri Aug 1 22:45:56 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
+
+ * tao/ORB_Core.i (is_profile_equivalent): Intialize the default
+ value to be true. Incorrect initializations lead to simple
+ errors with oebjref comparisions which showed up in our daily
+ builds.
+
Fri Aug 1 22:33:06 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* tao/Sequence.cpp: Fixed a link error due to a wrong inline
diff --git a/TAO/tao/ORB_Core.i b/TAO/tao/ORB_Core.i
index 478a3586ea9..6c4bbf688ae 100644
--- a/TAO/tao/ORB_Core.i
+++ b/TAO/tao/ORB_Core.i
@@ -128,7 +128,7 @@ ACE_INLINE CORBA::Boolean
TAO_ORB_Core::is_profile_equivalent (const TAO_Profile *this_p,
const TAO_Profile *that_p)
{
- CORBA::Boolean retval = 0;
+ CORBA::Boolean retval = 1;
if (this->ft_service_.service_callback ())
{