summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_visitor_exception/any_op_cs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be/be_visitor_exception/any_op_cs.cpp')
-rw-r--r--TAO/TAO_IDL/be/be_visitor_exception/any_op_cs.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_exception/any_op_cs.cpp b/TAO/TAO_IDL/be/be_visitor_exception/any_op_cs.cpp
index b32e1d64253..48500f83e6e 100644
--- a/TAO/TAO_IDL/be/be_visitor_exception/any_op_cs.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_exception/any_op_cs.cpp
@@ -56,9 +56,9 @@ be_visitor_exception_any_op_cs::visit_exception (be_exception *node)
*os << "void operator<<= (CORBA::Any &_tao_any, const "
<< node->name () << " &_tao_elem) // copying" << be_nl
<< "{" << be_idt_nl
- << node->name () << " *_tao_any_val = 0;" << be_nl
- << "ACE_NEW (_tao_any_val, " << node->name ()
- << " (_tao_elem));" << be_nl
+ << node->name () << " *_tao_any_val = new " << node->name ()
+ << " (_tao_elem);" << be_nl
+ << "if (!_tao_any_val) return;" << be_nl
<< "ACE_TRY_NEW_ENV" << be_nl
<< "{" << be_idt_nl
<< "_tao_any.replace (" << node->tc_name () << ", _tao_any_val, "