summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2005-07-26 08:17:52 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2005-07-26 08:17:52 +0000
commit63932d36deea828c758211721710cdca331ed0dd (patch)
treed9a13482da5658912f2b92acd90ee92264739a00
parenta3518db63db35c6627bcf7ca735069d8546a976a (diff)
downloadATCD-63932d36deea828c758211721710cdca331ed0dd.tar.gz
ChangeLogTag: Tue Jul 26 07:46:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r--TAO/tests/Bug_1020_Regression/client.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/tests/Bug_1020_Regression/client.cpp b/TAO/tests/Bug_1020_Regression/client.cpp
index 7e749580af9..0ea73e74cff 100644
--- a/TAO/tests/Bug_1020_Regression/client.cpp
+++ b/TAO/tests/Bug_1020_Regression/client.cpp
@@ -88,7 +88,7 @@ main (int argc, char *argv[])
TAO::Utils::Servant_Var<Echo> impl;
{
- Echo * tmp;
+ Echo * tmp = 0;
// ACE_NEW_RETURN is the worst possible way to handle
// exceptions (think: what if the constructor allocates memory
// and fails?), but I'm not in the mood to fight for a more