Please do not reply to this email- if you want to comment on the bug, go to the URL shown below and enter your comments there.
Changed by [EMAIL PROTECTED] http://bugzilla.ximian.com/show_bug.cgi?id=75842 --- shadow/75842 2005-08-18 06:00:08.000000000 -0400 +++ shadow/75842.tmp.21412 2005-08-18 06:00:08.000000000 -0400 @@ -0,0 +1,54 @@ +Bug#: 75842 +Product: Mono: Runtime +Version: 1.1 +OS: +OS Details: Debian unstable +Status: NEW +Resolution: +Severity: +Priority: Normal +Component: JIT +AssignedTo: [EMAIL PROTECTED] +ReportedBy: [EMAIL PROTECTED] +QAContact: [EMAIL PROTECTED] +TargetMilestone: --- +URL: +Cc: +Summary: deep recursion segfaults + +Please fill in this template when reporting a bug, unless you know what you +are doing. +Description of Problem: + +deep recursion segfaults + +Steps to reproduce the problem: + +1. compile this program: + + public class Crash { + public static void Main(string [] args) { + foo(System.Int32.Parse(args[0])); + } + static public void foo(int i) { + if (--i > 0 ) foo(i); + } + } + + +2. run as + + $ Crash.exe 1000000 + + +Actual Results: + + Segmentation fault + +Expected Results: + + some exception being thrown + +How often does this happen? + + always _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
