[Mono-bugs] [Bug 75842][Nor] New - deep recursion segfaults

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Thu Aug 18 06:00:08 EDT 2005


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 sfandino at yahoo.com.

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: mono-bugs at ximian.com                            
+ReportedBy: sfandino at yahoo.com               
+QAContact: mono-bugs at ximian.com
+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


More information about the mono-bugs mailing list