diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2002-06-25 20:31:40 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2002-06-25 20:31:40 +0000 |
commit | 757e32f8944142c7579e23249612f45a695a2f7b (patch) | |
tree | 13b27f1bc529c55d4a8c342ce45d6b00945f864f | |
parent | 544c636cd44d555ba32f1b1a9aa7543701d564f2 (diff) | |
download | ATCD-757e32f8944142c7579e23249612f45a695a2f7b.tar.gz |
ChangeLogTag: Tue Jun 25 15:30:03 2002 Irfan Pyarali <irfan@cs.wustl.edu>
-rw-r--r-- | TAO/ChangeLogs/ChangeLog-02a | 6 | ||||
-rw-r--r-- | TAO/tests/POA/Persistent_ID/server.cpp | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a index 303f5392a60..4057bea3f1c 100644 --- a/TAO/ChangeLogs/ChangeLog-02a +++ b/TAO/ChangeLogs/ChangeLog-02a @@ -1,3 +1,9 @@ +Tue Jun 25 15:30:03 2002 Irfan Pyarali <irfan@cs.wustl.edu> + + * tests/POA/Persistent_ID/server.cpp (destroy_POA): Fixed couple + of small errors. Thanks to Jaiganesh Balasubramanian + <jai@doc.ece.uci.edu> for pointing them out. + Tue Jun 25 11:48:39 2002 Mayur Deshpande <mayur@ics.uci.edu> * examples/README: diff --git a/TAO/tests/POA/Persistent_ID/server.cpp b/TAO/tests/POA/Persistent_ID/server.cpp index 44d470590d0..fbf22c2d98d 100644 --- a/TAO/tests/POA/Persistent_ID/server.cpp +++ b/TAO/tests/POA/Persistent_ID/server.cpp @@ -102,12 +102,12 @@ test_i::create_POA (ACE_ENV_SINGLE_ARG_DECL) policies[0] = this->poa_->create_id_assignment_policy (PortableServer::SYSTEM_ID ACE_ENV_ARG_PARAMETER); - ACE_CHECK; + ACE_CHECK_RETURN (test::_nil ()); policies[1] = this->poa_->create_lifespan_policy (PortableServer::PERSISTENT ACE_ENV_ARG_PARAMETER); - ACE_CHECK; + ACE_CHECK_RETURN (test::_nil ()); PortableServer::POAManager_var poa_manager = this->poa_->the_POAManager (ACE_ENV_SINGLE_ARG_PARAMETER); @@ -154,7 +154,7 @@ test_i::destroy_POA (ACE_ENV_SINGLE_ARG_DECL) ACE_THROW_SPEC ((CORBA::SystemException)) { this->child_poa_->destroy (1, 0 - ACE_ENV_SINGLE_ARG_PARAMETER); + ACE_ENV_ARG_PARAMETER); ACE_CHECK; } |