summaryrefslogtreecommitdiff
path: root/TAO/tao/Transport.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Transport.cpp')
-rw-r--r--TAO/tao/Transport.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/TAO/tao/Transport.cpp b/TAO/tao/Transport.cpp
index 3a76879c67a..decc6c359b2 100644
--- a/TAO/tao/Transport.cpp
+++ b/TAO/tao/Transport.cpp
@@ -1970,14 +1970,12 @@ TAO_Transport::process_queue_head (TAO_Resume_Handle &rh)
}
// Process the message...
- if (this->process_parsed_messages (qd,
- rh) == -1)
- return -1;
+ int retval = this->process_parsed_messages (qd, rh);
// Delete the Queued_Data..
TAO_Queued_Data::release (qd);
- return 0;
+ return retval;
}
int