[Mono-bugs] [Bug 61152][Nor] Changed - system_assembly gets NULL when System.dll is loaded by reflection LoadFrom
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Fri, 6 Aug 2004 09:29:19 -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 lupus@ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=61152
--- shadow/61152 2004-07-24 22:55:07.000000000 -0400
+++ shadow/61152.tmp.26515 2004-08-06 09:29:19.000000000 -0400
@@ -1,13 +1,13 @@
Bug#: 61152
Product: Mono: Runtime
Version: unspecified
OS: unknown
OS Details: Linux Mandrake 10.0, mono 1.0
-Status: RESOLVED
-Resolution: FIXED
+Status: REOPENED
+Resolution:
Severity: Unknown
Priority: Normal
Component: misc
AssignedTo: mono-bugs@ximian.com
ReportedBy: nazgul@omega.pl
QAContact: mono-bugs@ximian.com
@@ -67,6 +67,20 @@
------- Additional Comments From fxjrlists@yahoo.com.br 2004-07-24 22:55 -------
I tested this code with cvs of today 2004-07-24 and it is working.
+
+------- Additional Comments From lupus@ximian.com 2004-08-06 09:29 -------
+This is still broken in current cvs. Simpler test case:
+using System;
+using System.Reflection;
+
+public class Test {
+ static void Main () {
+ Assembly a = System.Reflection.Assembly.LoadFrom
+ ("file:///usr/local/lib/mono/1.0/System.dll");
+ System.Net.Dns.GetHostByName ("localhost");
+ }
+}
+