I've come across a "bug" that is causing my DVP to crash repeatably (I hesitate to use the term bug as I was doing something more or less incorrect with a brightscript object).
The issue seems to occur when iterating over an array that does not have all it's values specified. I have a specific code segment below which will reproduce the issue (every time I've run it at least). After executing the code, the box will freeze for a few seconds before rebooting. I do not see any output on the debug console except for my telnet client telling me that the connection was closed by the remote host.
Iterating over an array which has 'empty' positions is probably not something I should be doing (and not what I had meant to do), but going through a reboot also doesn't seem like a good reaction.
My DVP is running v2.4 - build 357
Here is the code to reproduce:
Sub Main()
array = CreateObject("roArray", 3, false)
array[1] = 1
array[2] = 2
for each i in array
print i
end for
End Sub
Also, I wasn't sure what the desired channel for reporting bugs is. If there is a bug tracker some where I should report this to, please let me know.
-Mark