diff options
author | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-12-01 16:38:02 +0000 |
---|---|---|
committer | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-12-01 16:38:02 +0000 |
commit | 215f420acb66b5272500038b1ad7b1ed14765118 (patch) | |
tree | 3f6d994f1efdb99403f5ca47cf4839ed3ad10e55 | |
parent | 0ed8eae7f952b12677be6cb219b18f8205c7ce6b (diff) | |
download | ATCD-215f420acb66b5272500038b1ad7b1ed14765118.tar.gz |
ChangeLogTag:Tue Dec 1 10:12:57 1998 Carlos O'Ryan <coryan@cs.wustl.edu>
-rw-r--r-- | TAO/ChangeLog-98c | 6 | ||||
-rw-r--r-- | TAO/tao/Typecode.cpp | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/TAO/ChangeLog-98c b/TAO/ChangeLog-98c index e3a22d53094..14e3ad79363 100644 --- a/TAO/ChangeLog-98c +++ b/TAO/ChangeLog-98c @@ -1,3 +1,9 @@ +Tue Dec 1 10:12:57 1998 Carlos O'Ryan <coryan@cs.wustl.edu> + + * tao/Typecode.cpp: + The size for a TypeCode field was not computed properly (it + should be sizeof(TypeCode_ptr)). + Tue Dec 01 10:16:02 1998 David L. Levine <levine@cs.wustl.edu> * TAO version 0.2.42 released. diff --git a/TAO/tao/Typecode.cpp b/TAO/tao/Typecode.cpp index f786ba530b8..25a68c329f6 100644 --- a/TAO/tao/Typecode.cpp +++ b/TAO/tao/Typecode.cpp @@ -140,7 +140,7 @@ CORBA_TypeCode::CORBA_TypeCode (CORBA::TCKind kind) this->private_state_->tc_size_ = sizeof (CORBA::WChar); break; case CORBA::tk_TypeCode: - this->private_state_->tc_size_ = sizeof (CORBA::TypeCode); + this->private_state_->tc_size_ = sizeof (CORBA::TypeCode_ptr); break; case CORBA::tk_Principal: this->private_state_->tc_size_ = sizeof (CORBA::Principal); |