https://bugzilla.novell.com/show_bug.cgi?id=342374
Summary: Mono fails to detect StackOverflow exception
Product: Mono: Runtime
Version: SVN
Platform: Other
OS/Version: Other
Status: NEW
Severity: Normal
Priority: P5 - None
Component: misc
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]
QAContact: [EMAIL PROTECTED]
Found By: ---
1. Apply enclosed patch to /mcs/mcs
2. Try to compile any file with field initializer, or run compiler test suite
The critical line is this
+ if (resolved != null)
+ resolved.EmitStatement (ec);
because resolved is this, changing it to
if (resolved != null) {
if (resolved == this)
base.EmitStatement (ec);
else
resolved.EmitStatement (ec);
}
fixes the problem
--
Configure bugmail: https://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