Please report new issues athttps://github.com/DOCGroup
Bounded sequences allocate memory for all its values at the creation time. As a result an apllication using complex/long bounded sequences needs and wastes much more resorces. In case of recursive bounded sequences it leads to stock recursion (finally segmentation fault). This problem does not occure with unbouded sequences.
please provide an automated regression test as reproducer. Use one of the existing tests as base and don't use anything like stl, streams.
Created attachment 845 [details] regression test This test creates very simple recursive bounded sequence and exits with SEGV fault
thanks for the regression test, I will have a look
Wed Aug 15 11:21:12 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl> * tao/Bounded_Array_Allocation_Traits_T.h: * tao/Bounded_Reference_Allocation_Traits_T.h: * tao/Bounded_Value_Allocation_Traits_T.h: * tao/Valuetype/Bounded_Valuetype_Allocation_Traits_T.h: Don't preallocate all sequence members when using bound sequences, this could lead to a stack overflow when using recursive types as described in bugzilla 3042. Thanks to Stanislaw Trytek <tryteks at pit dot edu dot pl> for reporting this. * tests/Bug_3042_Regression/*: New regression test for bug 3042, thanks to Stanislaw Trytek <tryteks at pit dot edu dot pl> for creating this one