First time for everything - Dolphin crash

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

First time for everything - Dolphin crash

Ted Bracht-2
Hi Andy, Blair,

For the first time I had a _real_ Dolphin crash.

I've got a load of text (from Notepad) which I'm pasing into a method
that returns the load of text into an array. Basically an integer, a
string, an integer, a string and so on (some 150 of these pairs). So
the method looks like:

fooArray

^#(
123 'string'
124 'another string'

and so on

876 'string
877 'string'
878 'string'
)

Note that the string after 876 doesn't have the closing string quote.
Trying to accept this method crashes Dolphin (I've got a crash log if
you want). Adding the quote it of course works as expected.

Ted