[Mono-bugs] [Bug 58707][Maj] Changed - Exception when trying to AppDomain.Unload()
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Mon, 24 May 2004 21:46:55 -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 gonzalo@ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=58707
--- shadow/58707 2004-05-24 08:53:08.000000000 -0400
+++ shadow/58707.tmp.14776 2004-05-24 21:46:55.000000000 -0400
@@ -160,6 +160,16 @@
The first test case was fixed by the Thread.Abort rewrite, but the
second test case doesn't seem related to this. I'm getting a hang
instead of an exception. gdb shows a recursive call that never ends,
altough the called method is not recursive, so it looks like there is
some kind of memory corruption. Zoltan, Massi, any clue about what
could cause this? (without the AppDomain.Unload it works).
+
+------- Additional Comments From gonzalo@ximian.com 2004-05-24 21:46 -------
+I get a NullRef from line 1039 (1038) of System/IntegerFormatter:
+long value;
+[...]
+1037: while (value >= 10) {
+1038: tmp[--position] = digitLowerTable[(value % 10)];
+1039: value /= 10;
+1040: }
+