summaryrefslogtreecommitdiff
path: root/TAO/tao
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2011-05-10 18:17:38 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2011-05-10 18:17:38 +0000
commitb075db60272a571b212dde00c58eb6d084b46689 (patch)
tree2a791197f16aaff8f8bc49e806f52a4edd841749 /TAO/tao
parentbd5387c01eb63abe2e7d53412d41ff7993fdb40d (diff)
downloadATCD-b075db60272a571b212dde00c58eb6d084b46689.tar.gz
Tue May 10 18:15:28 UTC 2011 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/ImR_Client/ImR_Client.cpp: changed variable name to not match method argument * utils/catior/catior.cpp: * utils/nslist/nsadd.cpp: * utils/nslist/nsdel.cpp: * utils/nslist/nslist.cpp: Fixed coverity errors, not leak exceptions
Diffstat (limited to 'TAO/tao')
-rw-r--r--TAO/tao/ImR_Client/ImR_Client.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/tao/ImR_Client/ImR_Client.cpp b/TAO/tao/ImR_Client/ImR_Client.cpp
index 99c7f054849..f0cd9e424de 100644
--- a/TAO/tao/ImR_Client/ImR_Client.cpp
+++ b/TAO/tao/ImR_Client/ImR_Client.cpp
@@ -202,9 +202,9 @@ namespace TAO
if (this->server_object_)
{
- PortableServer::POA_var poa = this->server_object_->_default_POA ();
+ PortableServer::POA_var default_poa = this->server_object_->_default_POA ();
- TAO_Root_POA *root_poa = dynamic_cast <TAO_Root_POA*> (poa.in ());
+ TAO_Root_POA *root_poa = dynamic_cast <TAO_Root_POA*> (default_poa.in ());
if (!root_poa)
{