[Mono-bugs] [Bug 54813][Nor] Changed - mcs 0.30.1 crashes mono in metadata.c
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Fri, 27 Feb 2004 04:50:52 -0500 (EST)
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 diltonm@mccomsoft.com.
http://bugzilla.ximian.com/show_bug.cgi?id=54813
--- shadow/54813 2004-02-27 04:19:38.000000000 -0500
+++ shadow/54813.tmp.4972 2004-02-27 04:50:52.000000000 -0500
@@ -157,6 +157,32 @@
mcs Client.cs -r:System.Data.dll -r:System.Web.Services.dll -
r:System.Management.dll -r:Microsoft.Web.Services.dll" -
r:Utils/Utils.dll
-Dilton
+
+------- Additional Comments From diltonm@McCOMSoft.com 2004-02-27 04:50 -------
+Client.cs can be reduced to this:
+
+using System;
+using Utils;
+
+namespace ClientTester
+{
+ public class MyClient
+ {
+ //This causes the crash.
+ int i = Int32.Parse(Utilities.GetRefund());
+
+ public MyClient() {}
+
+ public static void Main()
+ {
+ }
+
+ public string WillWeCrash()
+ {
+ return "Ok\n";
+ }
+ }
+}