[Mono-bugs] [Bug 35819][Nor] Changed - mono/mint exhausts memory when using accessors

bugzilla-daemon@rocky.ximian.com bugzilla-daemon@rocky.ximian.com
18 Dec 2002 13:12:27 -0000


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 lupus@ximian.com.

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

--- shadow/35819	Wed Dec 18 07:26:48 2002
+++ shadow/35819.tmp.2900	Wed Dec 18 08:12:27 2002
@@ -1,14 +1,14 @@
 Bug#: 35819
 Product: Mono/Runtime
 Version: unspecified
-OS: 
+OS: unknown
 OS Details: RH 8.0
-Status: NEW   
-Resolution: 
-Severity: 
+Status: RESOLVED   
+Resolution: NOTABUG
+Severity: Unknown
 Priority: Normal
 Component: misc
 AssignedTo: mono-bugs@ximian.com                            
 ReportedBy: steve@przepiora.org               
 QAContact: mono-bugs@ximian.com
 TargetMilestone: ---
@@ -54,6 +54,16 @@
 How often does this happen? 
 every single time
 
 Additional Information:
 mono 0.17
 RH 8.0 standard install
+
+------- Additional Comments From lupus@ximian.com  2002-12-18 08:12 -------
+The property accessor and settors you coded will recurse indefinitely,
+resulting in a crash. They are the same as:
+
+void do_stuff () {
+  do_stuff ();
+}
+
+The resulting stack overflow exception is not easily caught.