summaryrefslogtreecommitdiff
path: root/TAO
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2004-03-26 04:33:33 +0000
committerbala <balanatarajan@users.noreply.github.com>2004-03-26 04:33:33 +0000
commitc64861a722b8863ed7093734f95b6458e72d31ff (patch)
tree7110208b76fe60e46606a99faaeda5792600d131 /TAO
parentc63e12e0f190976cc0bce5ed86014f7b45da2cd5 (diff)
downloadATCD-c64861a722b8863ed7093734f95b6458e72d31ff.tar.gz
ChangeLogTag:Fri Mar 26 10:28:04 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
Diffstat (limited to 'TAO')
-rw-r--r--TAO/ChangeLog6
-rw-r--r--TAO/tao/Sequence.cpp13
-rw-r--r--TAO/tao/Typecode.cpp1
3 files changed, 14 insertions, 6 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 950eb3f8408..64d99339131 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,9 @@
+Fri Mar 26 10:28:04 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
+
+ * tao/Sequence.cpp:
+
+ Corrected a logic error.
+
Thu Mar 25 20:47:23 2004 Balachandran Natarajan <bala@dre.vanderbilt.edu>
* tao/Sequence.cpp:
diff --git a/TAO/tao/Sequence.cpp b/TAO/tao/Sequence.cpp
index 966dc2b8714..f173f913847 100644
--- a/TAO/tao/Sequence.cpp
+++ b/TAO/tao/Sequence.cpp
@@ -58,15 +58,16 @@ check_bounds(
"Access error in TAO_Sequence file=%s, line=%u, "
"idx=%u, max=%u\n",
ACE_TEXT_CHAR_TO_TCHAR (filename), lineno, tao_idx, tao_max));
- }
-
- // @@TODO: When we have a hook setup, we can totally ignore this or
- // even remove this.
+
+ // @@TODO: When we have a hook setup, we can totally ignore this or
+ // even remove this.
#if defined (ACE_HAS_EXCEPTIONS)
- ACE_THROW (CORBA::BAD_PARAM ());
+ ACE_THROW (CORBA::BAD_PARAM ());
+ ACE_OS::abort ();
#else
- ACE_OS::abort ();
+ ACE_OS::abort ();
#endif /*ACE_HAS_EXCEPTIONS*/
+ }
}
// *************************************************************
diff --git a/TAO/tao/Typecode.cpp b/TAO/tao/Typecode.cpp
index 4d19db22857..d8586afeba7 100644
--- a/TAO/tao/Typecode.cpp
+++ b/TAO/tao/Typecode.cpp
@@ -2944,6 +2944,7 @@ CORBA::TypeCode::private_default_index_i (
CORBA::Long
CORBA::TypeCode::private_length (ACE_ENV_SINGLE_ARG_DECL) const
{
+ ACE_DEBUG ((LM_DEBUG, "sambaavi \n"));
TAO_InputCDR stream (this->buffer_+4,
this->length_-4,
this->byte_order_);