diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2011-05-09 19:12:06 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2011-05-09 19:12:06 +0000 |
commit | ba19d4fddcd48a74204fda2eba3c9554eb1ff171 (patch) | |
tree | ce0bd2a83bd6044703f6a3ed95ddbb275632af8d /TAO/tao/IORManipulation | |
parent | f67a36feb37dc95114b263d23e0a14b2969a183b (diff) | |
download | ATCD-ba19d4fddcd48a74204fda2eba3c9554eb1ff171.tar.gz |
Mon May 9 19:10:54 UTC 2011 Johnny Willemsen <jwillemsen@remedy.nl>
* TAO_IDL/be/be_interface.cpp:
* tao/CSD_ThreadPool/CSD_TP_Task.cpp:
* tao/IORManipulation/IORManip_IIOP_Filter.cpp:
Fixed coverity errors
Diffstat (limited to 'TAO/tao/IORManipulation')
-rw-r--r-- | TAO/tao/IORManipulation/IORManip_IIOP_Filter.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/tao/IORManipulation/IORManip_IIOP_Filter.cpp b/TAO/tao/IORManipulation/IORManip_IIOP_Filter.cpp index ceb9bb1c958..d96d8553ae3 100644 --- a/TAO/tao/IORManipulation/IORManip_IIOP_Filter.cpp +++ b/TAO/tao/IORManipulation/IORManip_IIOP_Filter.cpp @@ -126,10 +126,10 @@ TAO_IORManip_IIOP_Filter::filter_and_add (TAO_Profile* profile, else { TAO_IIOP_Endpoint *endpoint = 0; - ACE_NEW (endpoint, - TAO_IIOP_Endpoint (endpoints[i].host, - endpoints[i].port, - endpoints[i].priority)); + ACE_NEW_NO_RETURN (endpoint, + TAO_IIOP_Endpoint (endpoints[i].host, + endpoints[i].port, + endpoints[i].priority)); if (endpoint == 0) { new_profile->_decr_refcnt (); |