summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-03-07 15:34:25 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-03-07 15:34:25 +0000
commit15e16efd369d785f30d1b0c0185a5c1966760e7d (patch)
treef863791ede283c3dfe513bd2957136b468174e04
parent0635e1b9fdbd64e0f58247785341e18f97566375 (diff)
downloadATCD-15e16efd369d785f30d1b0c0185a5c1966760e7d.tar.gz
Added some .in()s where a _var is used as an arg.
-rw-r--r--TAO/tao/deep_free.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/tao/deep_free.cpp b/TAO/tao/deep_free.cpp
index 14246b20cb9..d5fcae12cb2 100644
--- a/TAO/tao/deep_free.cpp
+++ b/TAO/tao/deep_free.cpp
@@ -424,7 +424,7 @@ TAO_Marshal_Union::deep_free (CORBA::TypeCode_ptr tc,
if (discrim_matched)
{
// deep_free the discriminator value
- retval = DEEP_FREE (discrim_tc,
+ retval = DEEP_FREE (discrim_tc.in (),
discrim_val,
data2,
ACE_TRY_ENV);
@@ -446,7 +446,7 @@ TAO_Marshal_Union::deep_free (CORBA::TypeCode_ptr tc,
// we are here only if there was no match
// deep_free the discriminator value
- retval = DEEP_FREE (discrim_tc,
+ retval = DEEP_FREE (discrim_tc.in (),
discrim_val,
data2,
ACE_TRY_ENV);