summaryrefslogtreecommitdiff
path: root/TAO/tao/Invocation.cpp
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2002-10-22 04:05:54 +0000
committerbala <balanatarajan@users.noreply.github.com>2002-10-22 04:05:54 +0000
commit34601941fc60330b7f79f0fc72be1ff087b3e242 (patch)
treed880c443ad8630445fe84dc1edb257706575a052 /TAO/tao/Invocation.cpp
parent312ed9cf7ffc44100f5a88c2178d067341d500a5 (diff)
downloadATCD-34601941fc60330b7f79f0fc72be1ff087b3e242.tar.gz
ChangeLogTag:Mon Oct 21 22:45:02 2002 Balachandran Natarajan <bala@isis-server.isis.vanderbilt.edu>
Diffstat (limited to 'TAO/tao/Invocation.cpp')
-rw-r--r--TAO/tao/Invocation.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/TAO/tao/Invocation.cpp b/TAO/tao/Invocation.cpp
index 2459e750f00..c48ddbe44d2 100644
--- a/TAO/tao/Invocation.cpp
+++ b/TAO/tao/Invocation.cpp
@@ -99,6 +99,9 @@ TAO_GIOP_Invocation::TAO_GIOP_Invocation (void)
received_location_forward_ (0),
profile_index_ (0)
{
+#if defined (ACE_HAS_PURIFY)
+ ACE_OS::memset(buffer_, 0, sizeof(buffer_));
+#endif /* ACE_HAS_PURIFY */
}
TAO_GIOP_Invocation::TAO_GIOP_Invocation (TAO_Stub *stub,
@@ -134,6 +137,9 @@ TAO_GIOP_Invocation::TAO_GIOP_Invocation (TAO_Stub *stub,
received_location_forward_ (0),
profile_index_ (0)
{
+#if defined (ACE_HAS_PURIFY)
+ ACE_OS::memset(buffer_, 0, sizeof(buffer_));
+#endif /* ACE_HAS_PURIFY */
}
TAO_GIOP_Invocation::~TAO_GIOP_Invocation (void)