diff options
author | gokhale <asgokhale@users.noreply.github.com> | 1998-05-11 19:27:10 +0000 |
---|---|---|
committer | gokhale <asgokhale@users.noreply.github.com> | 1998-05-11 19:27:10 +0000 |
commit | 29b71c9e872722d578c424d7df287c5714b655e8 (patch) | |
tree | cc2b471dd04b80a4b5b5173621bc85ccc9208a9c /TAO/tao | |
parent | 52888988f303ca13ed2ca36968c06ccce1987f75 (diff) | |
download | ATCD-29b71c9e872722d578c424d7df287c5714b655e8.tar.gz |
*** empty log message ***
Diffstat (limited to 'TAO/tao')
-rw-r--r-- | TAO/tao/encode.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/TAO/tao/encode.cpp b/TAO/tao/encode.cpp index 72af056ffcc..6d0c4720845 100644 --- a/TAO/tao/encode.cpp +++ b/TAO/tao/encode.cpp @@ -444,11 +444,13 @@ TAO_Marshal_Struct::encode (CORBA::TypeCode_ptr tc, case CORBA::tk_array: case CORBA::tk_alias: case CORBA::tk_except: + retval = stream->encode (param, data, 0, env); + break; case CORBA::tk_string: case CORBA::tk_wstring: case CORBA::tk_TypeCode: case CORBA::tk_objref: - retval = stream->encode (param, data, 0, env); + retval = stream->encode (param, &data, 0, env); break; default: break; |