[Mono-bugs] [Bug 447663] New: Debugger stops on NullRefException

bugzilla_noreply at novell.com bugzilla_noreply at novell.com
Fri Nov 21 11:44:52 EST 2008


https://bugzilla.novell.com/show_bug.cgi?id=447663


           Summary: Debugger stops on NullRefException
           Product: Mono: Debugger
           Version: 2.2.x
          Platform: Other
        OS/Version: openSUSE 11.0
            Status: NEW
          Severity: Normal
          Priority: P5 - None
         Component: cli
        AssignedTo: martin at novell.com
        ReportedBy: lluis at novell.com
         QAContact: mono-bugs at lists.ximian.com
          Found By: ---


Run the following app:

        class MainClass
        {
                public static void Main(string[] args)
                {
                        Console.WriteLine("Hello World!");
                        try {
                                string s = null;
                                s.ToString ();
                        } catch (Exception ex) {
                        }
                }
        }

The debugger stops at the s.ToString() line, reporting a signal 11. It should
not stop, because the NullRefException is catched.


-- 
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