diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2016-09-04 19:20:58 +0200 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2016-09-04 19:20:58 +0200 |
commit | f3387d02b2617c272300f22f2ae7a5864065997f (patch) | |
tree | 5c416496ff322e419c181bb01727d851e4321bfd /TAO/utils | |
parent | 03ef5706e8b3dcdd8de7636f39aaca7543b23283 (diff) | |
download | ATCD-f3387d02b2617c272300f22f2ae7a5864065997f.tar.gz |
Fixed warning
* TAO/utils/logWalker/Invocation.cpp:
Diffstat (limited to 'TAO/utils')
-rw-r--r-- | TAO/utils/logWalker/Invocation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/utils/logWalker/Invocation.cpp b/TAO/utils/logWalker/Invocation.cpp index f517c936c2e..e7d4ac18dd4 100644 --- a/TAO/utils/logWalker/Invocation.cpp +++ b/TAO/utils/logWalker/Invocation.cpp @@ -457,7 +457,7 @@ Invocation::dump_detail (ostream &strm, for (NotifyIncidents::ITERATOR i = this->notify_incidents_.begin(); !(i.done()); i.advance()) { - ACE_CString *note; + ACE_CString *note = 0; i.next(note); strm << " " << *note << endl; } |