[Mono-bugs] [Bug 48800][Nor] Changed - delegate fields break compiler
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Tue, 14 Oct 2003 23:45:40 -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 miguel@ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=48800
--- shadow/48800 2003-09-24 02:09:42.000000000 -0400
+++ shadow/48800.tmp.15657 2003-10-14 23:45:40.000000000 -0400
@@ -1,14 +1,14 @@
Bug#: 48800
Product: Mono/MCS
Version: unspecified
OS: GNU/Linux [Other]
OS Details:
-Status: NEW
-Resolution:
-Severity:
+Status: RESOLVED
+Resolution: FIXED
+Severity: Unknown
Priority: Normal
Component: Misc
AssignedTo: mono-bugs@ximian.com
ReportedBy: mass@akuma.org
QAContact: mono-bugs@ximian.com
TargetMilestone: ---
@@ -38,6 +38,17 @@
first call, and a non-resolved 'this' of type New on subsequent calls.
------- Additional Comments From mass@akuma.org 2003-09-24 02:09 -------
Created an attachment (id=5410)
This patch allows the program example to compile.
+
+------- Additional Comments From miguel@ximian.com 2003-10-14 23:45 -------
+Ok, I have applied a different patch.
+
+Given that the code might be invoked more than once, I have now kept
+the return value from NewDelegate (the only non-New object returned by
+New.DoResolve) in the RequestedType field (an overload of the value
+sadly, but we want to keep memory consumption down).
+
+Your initial detective work was splendid, but I wanted to understand
+things with some time to think about it.