http://bugzilla.novell.com/show_bug.cgi?id=573682
http://bugzilla.novell.com/show_bug.cgi?id=573682#c8 --- Comment #8 from Zoltan Varga <[email protected]> 2010-01-27 14:15:17 UTC --- The problem with the continue is that 'charIndex' is incremented at the beginning of the loop, but charCount is only incremented at the end of the loop, which the continue will skip, leading to the crash. By moving the charCount-- to the beginning of the loop the test case runs fine for me, even for the cp1250 encoding. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
