[Mono-bugs] [Bug 39380][Wis] New - Cannot create 2 AppDomains in a row
bugzilla-daemon@rocky.ximian.com
bugzilla-daemon@rocky.ximian.com
Sun, 9 Mar 2003 07:14:45 -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 gkodinov@openlinksw.co.uk.
http://bugzilla.ximian.com/show_bug.cgi?id=39380
--- shadow/39380 Sun Mar 9 07:14:45 2003
+++ shadow/39380.tmp.15096 Sun Mar 9 07:14:45 2003
@@ -0,0 +1,34 @@
+Bug#: 39380
+Product: Mono/Runtime
+Version: unspecified
+OS: Mandrake 8.0
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Wishlist
+Component: misc
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: gkodinov@openlinksw.co.uk
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: Cannot create 2 AppDomains in a row
+
+The following program throws NullReferenceException. It doesn't do that
+on MS.NET.
+
+
+using System;
+
+public class mm
+{
+ public static void Main (String [] args)
+ {
+ AppDomain d1, d2;
+
+ d1 = AppDomain.CreateDomain ("d1");
+ d2 = AppDomain.CreateDomain ("d2");
+ }
+}