diff options
author | yamuna <yamuna@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-03-16 20:00:31 +0000 |
---|---|---|
committer | yamuna <yamuna@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-03-16 20:00:31 +0000 |
commit | 0b7c2b660f7b898503e95f851e597403624a6063 (patch) | |
tree | 4bd0b105bd87a46fe0cf57588a36535dc0b56827 | |
parent | e563a72fe9b410003e035859f6a2ab99bb3b8ef5 (diff) | |
download | ATCD-0b7c2b660f7b898503e95f851e597403624a6063.tar.gz |
Removed a continue statement in the marshal method since it prevented
an exception from getting printed on the server side if the idl method
had no arguments and only a return value.
-rw-r--r-- | TAO/tao/Server_Request.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/TAO/tao/Server_Request.cpp b/TAO/tao/Server_Request.cpp index 38a777f70c1..8be2ab94a53 100644 --- a/TAO/tao/Server_Request.cpp +++ b/TAO/tao/Server_Request.cpp @@ -447,7 +447,6 @@ IIOP_ServerRequest::marshal (CORBA::Environment &orb_env, // Then just marshal the value. (void) this->outgoing_->encode (pdp->tc, ptr, 0, orb_env); } - continue; } else if ((pdp->mode == CORBA::ARG_INOUT) || (pdp->mode == CORBA::ARG_OUT)) |