summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-09-09 00:02:44 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-09-09 00:02:44 +0000
commitc02552e869d66d259193d80e8005534b3254a921 (patch)
treea936ff3c805bd5cf81ae9df0cf04ca5ef2f82142
parente25fc23cdcffdeb7fb30da4c0dd8ec1426460fb9 (diff)
downloadATCD-c02552e869d66d259193d80e8005534b3254a921.tar.gz
Fixed typo in last commit.
-rw-r--r--TAO/tao/decode.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/tao/decode.cpp b/TAO/tao/decode.cpp
index ad3252645f7..764235725a6 100644
--- a/TAO/tao/decode.cpp
+++ b/TAO/tao/decode.cpp
@@ -1138,7 +1138,7 @@ TAO_Marshal_Sequence::decode (CORBA::TypeCode_ptr tc,
TAO_Unbounded_Sequence<CORBA::Octet>* seq2 =
ACE_dynamic_cast(TAO_Unbounded_Sequence<CORBA::Octet>*, seq);
seq2->replace (bounds, stream->start ());
- seq2->mb ()->wr_ptr (seq->mb ()->rd_ptr () + bounds);
+ seq2->mb ()->wr_ptr (seq2->mb ()->rd_ptr () + bounds);
stream->skip_bytes (bounds);
return CORBA::TypeCode::TRAVERSE_CONTINUE;
}