https://bz.apache.org/ooo/show_bug.cgi?id=124154
mroe <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Ever confirmed|1 |0 Status|CONFIRMED |UNCONFIRMED --- Comment #3 from mroe <[email protected]> --- I set this issue to UNCONFIRMED because I see the behaviour but maybe it is an wrong use of variables. My explanation: An array variable is a pointer to a memory area. ReDim creates a new reference. A statement like ReDim anArray( somefunctionof( anArray() ) ) fails, because ReDim destroys the reference to the located memory area of anArray (it simply creates a new one) so anArray() inside somefunctionof() is not available furthermore. -- You are receiving this mail because: You are the assignee for the issue. You are on the CC list for the issue.
