<html>
<head>
<base href="https://bugs.documentfoundation.org/">
</head>
<body><span class="vcard"><a class="email" href="mailto:mikekaganski@hotmail.com" title="Mike Kaganski <mikekaganski@hotmail.com>"> <span class="fn">Mike Kaganski</span></a>
</span> changed
<a class="bz_bug_link
bz_status_NEW "
title="NEW - Formerly working BASIC function to get a copy of an array no longer working. Interoperability and compatibilty affected."
href="https://bugs.documentfoundation.org/show_bug.cgi?id=134692">bug 134692</a>
<br>
<table border="1" cellspacing="0" cellpadding="8">
<tr>
<th>What</th>
<th>Removed</th>
<th>Added</th>
</tr>
<tr>
<td style="text-align:right;">Status</td>
<td>UNCONFIRMED
</td>
<td>NEW
</td>
</tr>
<tr>
<td style="text-align:right;">Ever confirmed</td>
<td>
</td>
<td>1
</td>
</tr></table>
<p>
<div>
<b><a class="bz_bug_link
bz_status_NEW "
title="NEW - Formerly working BASIC function to get a copy of an array no longer working. Interoperability and compatibilty affected."
href="https://bugs.documentfoundation.org/show_bug.cgi?id=134692#c2">Comment # 2</a>
on <a class="bz_bug_link
bz_status_NEW "
title="NEW - Formerly working BASIC function to get a copy of an array no longer working. Interoperability and compatibilty affected."
href="https://bugs.documentfoundation.org/show_bug.cgi?id=134692">bug 134692</a>
from <span class="vcard"><a class="email" href="mailto:mikekaganski@hotmail.com" title="Mike Kaganski <mikekaganski@hotmail.com>"> <span class="fn">Mike Kaganski</span></a>
</span></b>
<pre>I feel quite sure that it's my fix to <a class="bz_bug_link
bz_status_VERIFIED bz_closed"
title="VERIFIED FIXED - ReDim is slow when array custom type is explicitly known"
href="show_bug.cgi?id=129256">tdf#129256</a> that caused the problem with
redim preserve (but I hadn't bisected actually).
sub tst
dim a(2 to 5)
b = a
redim preserve b(4 to 6)
for i = lbound(b) to ubound(b)
b(i) = i
next i
for i = lbound(a) to ubound(a)
s$ = s$ & " a(" & i & ")=" & a(i)
next i
s$ = s$ & chr(10)
for i = lbound(b) to ubound(b)
s$ = s$ & " b(" & i & ")=" & b(i)
next i
msgbox s$
end sub</pre>
</div>
</p>
<hr>
<span>You are receiving this mail because:</span>
<ul>
<li>You are the assignee for the bug.</li>
</ul>
</body>
</html>