http://bugzilla.novell.com/show_bug.cgi?id=628446
http://bugzilla.novell.com/show_bug.cgi?id=628446#c0 Summary: Hovering over the DateTime array in the debugger causes a segfault. Classification: Mono Product: Mono: Debugger Version: 2.6.x Platform: x86-64 OS/Version: Ubuntu Status: NEW Severity: Normal Priority: P5 - None Component: backend AssignedTo: [email protected] ReportedBy: [email protected] QAContact: [email protected] Found By: --- Blocker: --- Created an attachment (id=380660) --> (http://bugzilla.novell.com/attachment.cgi?id=380660) Stacktrace after the segfault. User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.8) Gecko/20100723 Ubuntu/10.04 (lucid) Firefox/3.6.8 This program: using System; using System.IO; namespace DBSegFault { class MainClass { public static void Main (string[] args) { DateTime [] dtm = new DateTime[1]; dtm[0] = new DateTime(1980, 1, 1); Console.WriteLine("Stop here"); } } } Run in the debugger in Monodevelop with a breakpoint on the WriteLine will segfault if one hovers over the dtm array and tries to inspect it. Reproducible: Always Steps to Reproduce: 1. Run the code in the debugger. 2. Break on the WriteLine. 3. Hover over the array dtm and try to inspect it. Actual Results: Segfault. Expected Results: No segfault. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
