SIGSEGV in rt_finalize

2010-07-28 Thread Rory Mcguire
Hi guys, I have a 265 line program that gets a segmentation fault if I don't comment out this while loop(I am not using delete or anything like it): /+ while (lines.length > 0 && line.length > 3 && line[3]=='-') { line ~= lines[0]; lines = lines[1..$]; }+/ An

Re: SIGSEGV in rt_finalize

2010-07-29 Thread Steven Schveighoffer
On Wed, 28 Jul 2010 11:45:59 -0400, Rory Mcguire wrote: Hi guys, I have a 265 line program that gets a segmentation fault if I don't comment out this while loop(I am not using delete or anything like it): /+ while (lines.length > 0 && line.length > 3 && line[3]=='-') { li

Re: SIGSEGV in rt_finalize

2010-07-29 Thread Rory Mcguire
Steven Schveighoffer wrote: > On Wed, 28 Jul 2010 11:45:59 -0400, Rory Mcguire > wrote: > >> Hi guys, >> >> I have a 265 line program that gets a segmentation fault if I don't >> comment >> out this while loop(I am not using delete or anything like it): >> /+ while (lines.length > 0 && line