summaryrefslogtreecommitdiff
path: root/TAO/tao/Transport.cpp
diff options
context:
space:
mode:
authorChris Cleeland <chris.cleeland@gmail.com>2003-03-20 18:40:13 +0000
committerChris Cleeland <chris.cleeland@gmail.com>2003-03-20 18:40:13 +0000
commit1a7c82f463ac85060b31e8b51d97a332ae7d097b (patch)
treeb6b64ec285939f62070b1f709ec73d727a0a573e /TAO/tao/Transport.cpp
parentc56bfe99fca1af4bd1273f305fe581261fa68d8b (diff)
downloadATCD-1a7c82f463ac85060b31e8b51d97a332ae7d097b.tar.gz
Bug fixes and changes leading up to first merge back to OCI repo.pmb_branch
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