summaryrefslogtreecommitdiff
path: root/TAO
diff options
context:
space:
mode:
Diffstat (limited to 'TAO')
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a4
-rw-r--r--TAO/tests/Big_Reply/Big_Reply_i.cpp10
2 files changed, 7 insertions, 7 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index c9083fd7b12..1d211b334f8 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,7 @@
+Wed Jun 20 07:31:14 2001 Balachandran Natarajan <bala@cs.wustl.edu>
+
+ * tests/Big_Reply/Big_Reply_i.cpp: Fixed a compile error on
+ Linux.
Wed Jun 20 07:48:12 2001 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Makefile.bor
diff --git a/TAO/tests/Big_Reply/Big_Reply_i.cpp b/TAO/tests/Big_Reply/Big_Reply_i.cpp
index 58622b0d0ca..bb48e8deb93 100644
--- a/TAO/tests/Big_Reply/Big_Reply_i.cpp
+++ b/TAO/tests/Big_Reply/Big_Reply_i.cpp
@@ -14,14 +14,11 @@ Big_Reply_i::~Big_Reply_i (void)
}
Test::Octet_Seq *
-Big_Reply_i::get_big_reply (CORBA::Environment &ACE_TRY_ENV)
+Big_Reply_i::get_big_reply (CORBA::Environment & /*ACE_TRY_ENV*/)
ACE_THROW_SPEC ((CORBA::SystemException))
{
- Test::Octet_Seq_var reply_mesg;
-
- ACE_NEW_THROW_EX (reply_mesg,
- Test::Octet_Seq (this->length_),
- CORBA::NO_MEMORY ());
+ Test::Octet_Seq_var reply_mesg =
+ new Test::Octet_Seq (this->length_);
reply_mesg->length (this->length_);
@@ -34,5 +31,4 @@ Big_Reply_i::shutdown (CORBA::Environment & /*ACE_TRY_ENV*/)
ACE_THROW_SPEC ((CORBA::SystemException))
{
this->orb_->shutdown ();
- ACE_CHECK;
}