summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2002-08-27 00:18:29 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2002-08-27 00:18:29 +0000
commit6d248f05b3970f4d90f286748107ca3e23f90139 (patch)
treec19925b0b164edafac9e0d5bd1537b1eb42fda30
parent8bdf0d19bba0ce3e22f950bbcab5529f40877c68 (diff)
downloadATCD-6d248f05b3970f4d90f286748107ca3e23f90139.tar.gz
ChangeLogTag:Mon Aug 26 17:17:58 2002 Ossama Othman <ossama@uci.edu>
-rw-r--r--TAO/ChangeLog6
-rw-r--r--TAO/tao/Exception.cpp4
2 files changed, 10 insertions, 0 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 55f1794a1d6..536f610d38f 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,9 @@
+Mon Aug 26 17:17:58 2002 Ossama Othman <ossama@uci.edu>
+
+ * tao/Exception.cpp (_tao_get_omg_exception_description):
+
+ Fixed an unused variable warning.
+
Mon Aug 26 16:27:29 2002 Jeff Parsons <parsons@cs.wustl.edu>
* TAO_IDL/util/utl_global.cpp:
diff --git a/TAO/tao/Exception.cpp b/TAO/tao/Exception.cpp
index 2c499855605..ae6f77f8b3d 100644
--- a/TAO/tao/Exception.cpp
+++ b/TAO/tao/Exception.cpp
@@ -805,6 +805,10 @@ CORBA_SystemException::_tao_get_omg_exception_description (
&& minor_code < sizeof IMP_LIMIT_TABLE / sizeof (char *))
return IMP_LIMIT_TABLE[minor_code];
+ if (exc._is_a ("IDL:omg.org/CORBA/INITIALIZE:1.0")
+ && minor_code < sizeof INITIALIZE_TABLE / sizeof (char *))
+ return INITIALIZE_TABLE[minor_code];
+
if (exc._is_a ("IDL:omg.org/CORBA/INV_OBJREF:1.0")
&& minor_code < sizeof INV_OBJREF_TABLE / sizeof (char *))
return INV_OBJREF_TABLE[minor_code];