summaryrefslogtreecommitdiff
path: root/TAO/tests/Big_Reply/Big_Reply_i.cpp
diff options
context:
space:
mode:
authorbala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-06-20 12:32:42 +0000
committerbala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-06-20 12:32:42 +0000
commit79f4fcb98db9e8477e5ca2a55490ebe57a1232a3 (patch)
treeb8130a04d65c2179c347a5feda6a7639967a15b2 /TAO/tests/Big_Reply/Big_Reply_i.cpp
parentf043720f50debc620ba06acf90d1a4460aa45fcd (diff)
downloadATCD-79f4fcb98db9e8477e5ca2a55490ebe57a1232a3.tar.gz
ChangeLogTag: Wed Jun 20 07:31:14 2001 Balachandran Natarajan <bala@cs.wustl.edu>
Diffstat (limited to 'TAO/tests/Big_Reply/Big_Reply_i.cpp')
-rw-r--r--TAO/tests/Big_Reply/Big_Reply_i.cpp10
1 files changed, 3 insertions, 7 deletions
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;
}