summaryrefslogtreecommitdiff
path: root/TAO/tao/SystemException.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2005-07-04 09:28:53 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2005-07-04 09:28:53 +0000
commitdcdccad0abfc104eb62bc1c6a437bc1d8d97640c (patch)
tree00413a9561bac06fe513fbf55ab1991d20347f34 /TAO/tao/SystemException.cpp
parentbf94e22c0c7bc8a72a9bc0c2c099c6c19994509d (diff)
downloadATCD-dcdccad0abfc104eb62bc1c6a437bc1d8d97640c.tar.gz
ChangeLogTag: Mon Jul 4 09:23:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tao/SystemException.cpp')
-rw-r--r--TAO/tao/SystemException.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/tao/SystemException.cpp b/TAO/tao/SystemException.cpp
index 5b8d085fef6..1dd155c7e51 100644
--- a/TAO/tao/SystemException.cpp
+++ b/TAO/tao/SystemException.cpp
@@ -902,7 +902,7 @@ STANDARD_EXCEPTION_LIST
CORBA::Exception * \
CORBA::name ::_tao_duplicate (void) const \
{ \
- CORBA::Exception * result; \
+ CORBA::Exception * result = 0; \
ACE_NEW_RETURN (result, CORBA::name (*this), 0); \
return result; \
}
@@ -914,7 +914,7 @@ STANDARD_EXCEPTION_LIST
CORBA::SystemException * \
CORBA::name ::_tao_create (void) \
{ \
- CORBA::name *result; \
+ CORBA::name *result = 0; \
ACE_NEW_RETURN (result, CORBA::name (), 0); \
return result; \
}