Bug 1928 - Assignment from T_mgr to sequence elements does not duplicate
Summary: Assignment from T_mgr to sequence elements does not duplicate
Status: RESOLVED FIXED
Alias: None
Product: TAO
Classification: Unclassified
Component: ORB (show other bugs)
Version: 1.4.2
Hardware: All All
: P3 normal
Assignee: Johnny Willemsen
URL:
Depends on:
Blocks: 1929
  Show dependency tree
 
Reported: 2004-09-19 19:44 CDT by Carlos O'Ryan
Modified: 2006-04-19 07:44 CDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Carlos O'Ryan 2004-09-19 19:44:36 CDT
Consider the following code:

// IDL
interface Foo { .... };

struct Bar { Foo a_foo; };

typedef Sequence<Foo> Baz;

The following assignment will not increment the reference count as it should

// C++
Bar some_bar = ....;

Baz some_sequence = ...;

some_sequence[0] = some_bar.a_foo;

The problem is that the sequence element helper does not have a constructor from
 T_mgr.
Comment 1 Johnny Willemsen 2005-11-23 06:55:45 CST
Reassign, this one is handled in the sequenceupdate branch which will be made
public with the x.5.2 release
Comment 2 Johnny Willemsen 2006-03-06 06:21:57 CST
Adding some info I got from Carlso some time ago:
Fixed, unit test in string_sequence_element_ut.cpp
Comment 3 Johnny Willemsen 2006-03-21 06:14:25 CST
accept
Comment 4 Johnny Willemsen 2006-04-19 07:44:30 CDT
Wed Apr 19 07:48:12 UTC 2006  Johnny Willemsen  <jwillemsen@remedy.nl>