SplitWords can hang the server (POL097-2006-10-29)
Posted: Thu Dec 28, 2006 8:41 am
Hi,
if you use SplitWords with a custom delimiter on a string that begins
with that delimiter, it will permanently hang the server ("No clock
movement"). You can use the following text command to reproduce it:
Xandros
if you use SplitWords with a custom delimiter on a string that begins
with that delimiter, it will permanently hang the server ("No clock
movement"). You can use the following text command to reproduce it:
It will not hang if teststring is " *" or " * ".program testbug()
var teststring := "* ";
var testarray := SplitWords(teststring, "*");
print (testarray);
endprogram
Xandros