[Mono-bugs] [Bug 45817][Cri] Changed - mono hangs on exception backtrace
bugzilla-daemon@rocky.ximian.com
bugzilla-daemon@rocky.ximian.com
Sat, 5 Jul 2003 16:51:39 -0400 (EDT)
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 bmaurer@users.sf.net.
http://bugzilla.ximian.com/show_bug.cgi?id=45817
--- shadow/45817 Thu Jul 3 18:18:44 2003
+++ shadow/45817.tmp.26087 Sat Jul 5 16:51:39 2003
@@ -1,15 +1,15 @@
Bug#: 45817
Product: Mono/Runtime
Version: unspecified
-OS:
+OS: unknown
OS Details: Debian sid
Status: NEW
Resolution:
-Severity:
-Priority: Major
+Severity: Unknown
+Priority: Critical
Component: misc
AssignedTo: mono-bugs@ximian.com
ReportedBy: m.canini@libero.it
QAContact: mono-bugs@ximian.com
TargetMilestone: ---
URL:
@@ -318,6 +318,34 @@
public static int ALL_EXCEPT_LIKE = 0x03;
public static int SEARCHABLE = 0x04;
public static int COLLATION_ASC = 0x01;
public static int COLLATION_DESC = 0x02;
}
}
+
+------- Additional Comments From bmaurer@users.sf.net 2003-07-05 16:51 -------
+This also seems to trigger it:
+
+using System;
+
+public class Bug {
+ static void Main ()
+ {
+ Console.WriteLine ("Bugged");
+ nullrefexc ();
+ }
+
+ static void nullrefexc ()
+ {
+ object[,] types = new object[,] {
+ {null, null, null, null, null, null, null, null, null, null, null,
+null, null, null, null, null, null, null},
+ {null, null, null, null, null, null, null, null, null, null, null,
+null, null, null, null, null, null, null},
+ };
+ }
+}
+
+If I remove any of the nulls, the error goes away. This seems really
+funky...
+
+Am marking this critical, this is basic functionality.