diff options
author | bala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2002-10-22 04:05:54 +0000 |
---|---|---|
committer | bala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2002-10-22 04:05:54 +0000 |
commit | aa44169f06e51ae9292b9af4bc972b555ff38e5e (patch) | |
tree | d880c443ad8630445fe84dc1edb257706575a052 /TAO/tao/Invocation.cpp | |
parent | 8e2011d369e9a87ea86e25b3f5279d3c9bf288a1 (diff) | |
download | ATCD-aa44169f06e51ae9292b9af4bc972b555ff38e5e.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.cpp | 6 |
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) |