summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TAO/ChangeLog7
-rw-r--r--TAO/tao/PortableServer/POA.cpp2
2 files changed, 8 insertions, 1 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index e6996bcf2db..7b5234083a4 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,10 @@
+Mon May 26 12:18:12 UTC 2003 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * tao/PortableServer/POA.cpp:
+ Fixed uninitialized parameter warning. Thanks to
+ W.M. van den Boogaard <wim.vd.boogaard@meco.nl> for reporting
+ this.
+
Sun May 25 12:51:58 UTC 2003 Don Hinton <dhinton@dresystems.com>
* taoconfig.mk:
diff --git a/TAO/tao/PortableServer/POA.cpp b/TAO/tao/PortableServer/POA.cpp
index 4b0d70ce44d..6246e00474a 100644
--- a/TAO/tao/PortableServer/POA.cpp
+++ b/TAO/tao/PortableServer/POA.cpp
@@ -3742,7 +3742,7 @@ TAO_POA::establish_components (ACE_ENV_SINGLE_ARG_DECL)
if (interceptor_count == 0)
return;
- TAO_IORInfo * tao_info;
+ TAO_IORInfo *tao_info = 0;
ACE_NEW_THROW_EX (tao_info,
TAO_IORInfo (this),
CORBA::NO_MEMORY (