[Mono-bugs] [Bug 56091][Wis] New - bug in unload_thread_main
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Fri, 26 Mar 2004 15:54:05 -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 bernard@ugsolutions.com.
http://bugzilla.ximian.com/show_bug.cgi?id=56091
--- shadow/56091 2004-03-26 15:54:05.000000000 -0500
+++ shadow/56091.tmp.28221 2004-03-26 15:54:05.000000000 -0500
@@ -0,0 +1,30 @@
+Bug#: 56091
+Product: Mono: Runtime
+Version: unspecified
+OS: All
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Wishlist
+Component: misc
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: bernard@ugsolutions.com
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: bug in unload_thread_main
+
+Description of Problem:
+
+The following code in unload_thread_main in appdomain.c crashes:
+
+ mono_g_hash_table_foreach (domain->proxy_vtable_hash,
+clear_cached_vtable,
+ domain);
+
+because proxy_vtable_hash is not keyed on a class but a string. I am not
+sure whether this should just be removed or should be altered to do
+something different (I've commented it out in my version for the moment)
+so am submitting this bug report.