[Mono-bugs] [Bug 651259] New: SIGSEGV instead of StackOverflow
bugzilla_noreply at novell.com
bugzilla_noreply at novell.com
Thu Nov 4 06:09:49 EDT 2010
https://bugzilla.novell.com/show_bug.cgi?id=651259
https://bugzilla.novell.com/show_bug.cgi?id=651259#c0
Summary: SIGSEGV instead of StackOverflow
Classification: Mono
Product: Mono: Runtime
Version: SVN
Platform: Other
OS/Version: Other
Status: NEW
Severity: Normal
Priority: P5 - None
Component: JIT
AssignedTo: lupus at novell.com
ReportedBy: msafar at novell.com
QAContact: mono-bugs at lists.ximian.com
Found By: ---
Blocker: ---
When running this "incorrect" program
class C
{
static void Recurse (int i)
{
if (i > 300)
throw null;
Recurse (i++);
}
public static void Main ()
{
Recurse (0);
}
}
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
More information about the mono-bugs
mailing list