[Mono-bugs] [Bug 29488][Min] Changed - Marshaling delegates doesn't free the generated code
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Sat, 28 Aug 2004 00:18:58 -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 bmaurer@users.sf.net.
http://bugzilla.ximian.com/show_bug.cgi?id=29488
--- shadow/29488 2002-08-29 11:02:21.000000000 -0400
+++ shadow/29488.tmp.25045 2004-08-28 00:18:58.000000000 -0400
@@ -1,8 +1,8 @@
Bug#: 29488
-Product: Mono/Runtime
+Product: Mono: Runtime
Version: unspecified
OS: unknown
OS Details: Debian/Unstable
Status: NEW
Resolution:
Severity: Unknown
@@ -11,13 +11,13 @@
AssignedTo: mono-bugs@ximian.com
ReportedBy: nick@chemlab.org
QAContact: mono-bugs@ximian.com
TargetMilestone: ---
URL:
Cc:
-Summary: Delegate marshalling bug
+Summary: Marshaling delegates doesn't free the generated code
Steps to reproduce the problem:
1. Compile the following C code as a shared library called libdelegate.so.
-- START --
@@ -100,6 +100,10 @@
Always.
Additional Information:
------- Additional Comments From dietmar@ximian.com 2002-08-29 11:02 -------
fixed, but we need to free the allocted memory somehow.
+
+------- Additional Comments From bmaurer@users.sf.net 2004-08-28 00:18 -------
+the msft docs say that when an object is freed, all of the delegates
+on that object are freed. We could do this with finalizers i guess...