[Mono-bugs] [Bug 35837][Nor] New - Encoding a null `const' crashes Reflection.
bugzilla-daemon@rocky.ximian.com
bugzilla-daemon@rocky.ximian.com
18 Dec 2002 16:18:14 -0000
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 miguel@ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=35837
--- shadow/35837 Wed Dec 18 11:18:14 2002
+++ shadow/35837.tmp.22041 Wed Dec 18 11:18:14 2002
@@ -0,0 +1,32 @@
+Bug#: 35837
+Product: Mono/Runtime
+Version: unspecified
+OS: other
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Normal
+Component: misc
+AssignedTo: lupus@ximian.com
+ReportedBy: miguel@ximian.com
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: Encoding a null `const' crashes Reflection.
+
+Hello,
+
+ Encoding a null constant crashes reflection. Sample program follows:
+
+using System;
+
+public class Testing
+{
+ const object Test = null;
+
+ public static void Main()
+ {
+ }
+}