[Mono-bugs] [Bug 47689][Wis] New - The runtime should detect stack overflow

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Wed, 7 Jan 2004 08:39:52 -0500 (EST)


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 vargaz@freemail.hu.

http://bugzilla.ximian.com/show_bug.cgi?id=47689

--- shadow/47689	2004-01-07 08:39:52.000000000 -0500
+++ shadow/47689.tmp.7432	2004-01-07 08:39:52.000000000 -0500
@@ -0,0 +1,76 @@
+Bug#: 47689
+Product: Mono/Runtime
+Version: unspecified
+OS: unknown
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: Unknown
+Priority: Wishlist
+Component: misc
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: pumrs@web.de               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: The runtime should detect stack overflow
+
+Please fill in this template when reporting a bug, unless you know what you are doing. 
+Description of Problem: 
+ 
+ 
+Steps to reproduce the problem: 
+1. write ASPX-page like this: 
+<%@ Page Language="C#" %> 
+<HTML> 
+<Body> 
+<script language="C#" runat="Server"> 
+  public class buggie{ 
+    string m_hugo = ""; 
+    public string hugo{ 
+	 set{hugo = value;} } 
+  } 
+</Script> 
+<% buggie bg = new buggie(); 
+   bg.hugo = "oh, a bug"; 
+%> 
+</body> 
+</html> 
+2. open this page with XSP 
+3.  
+ 
+Actual Results: 
+XSP stops with Memory Access Failure 
+ 
+Expected Results: 
+Error message in compiler or at runtime in in XSP 
+ 
+How often does this happen?  
+every time 
+ 
+Additional Information:
+
+------- Additional Comments From gonzalo@ximian.com  2003-08-18 05:50 -------
+Another test case:
+
+class C
+{
+    int Prop {
+        set { Prop = value; }
+    }
+
+    static void Main ()
+    {
+         C c = new C ();
+         c.Prop = 1;
+    }
+}
+
+
+
+------- Additional Comments From vargaz@freemail.hu  2003-09-28 09:32 -------
+*** Bug 46612 has been marked as a duplicate of this bug. ***
+
+------- Additional Comments From vargaz@freemail.hu  2004-01-07 08:39 -------
+*** Bug 52653 has been marked as a duplicate of this bug. ***