mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-22 20:05:41 +00:00
Merge pull request #136 from midmohan/Fix_for_FinalizerInfo_Leak
Fix for memory leak(Issue 135)
This commit is contained in:
commit
34ab03a3c2
|
@ -146,6 +146,7 @@ namespace GtkSharp.Generation {
|
|||
if (finalizer_needed) {
|
||||
sw.WriteLine ("\t\tclass FinalizerInfo {");
|
||||
sw.WriteLine ("\t\t\tIntPtr handle;");
|
||||
sw.WriteLine ("\t\t\tpublic uint timeoutHandlerId;");
|
||||
sw.WriteLine ();
|
||||
sw.WriteLine ("\t\t\tpublic FinalizerInfo (IntPtr handle)");
|
||||
sw.WriteLine ("\t\t\t{");
|
||||
|
@ -158,6 +159,7 @@ namespace GtkSharp.Generation {
|
|||
sw.WriteLine ("\t\t\t\t{0} (handle);", dispose.CName);
|
||||
else if (unref != null)
|
||||
sw.WriteLine ("\t\t\t\t{0} (handle);", unref.CName);
|
||||
sw.WriteLine ("\t\t\t\tGLib.Timeout.Remove(timeoutHandlerId);");
|
||||
sw.WriteLine ("\t\t\t\treturn false;");
|
||||
sw.WriteLine ("\t\t\t}");
|
||||
sw.WriteLine ("\t\t}");
|
||||
|
@ -167,7 +169,7 @@ namespace GtkSharp.Generation {
|
|||
sw.WriteLine ("\t\t\tif (!Owned)");
|
||||
sw.WriteLine ("\t\t\t\treturn;");
|
||||
sw.WriteLine ("\t\t\tFinalizerInfo info = new FinalizerInfo (Handle);");
|
||||
sw.WriteLine ("\t\t\tGLib.Timeout.Add (50, new GLib.TimeoutHandler (info.Handler));");
|
||||
sw.WriteLine ("\t\t\tinfo.timeoutHandlerId = GLib.Timeout.Add (50, new GLib.TimeoutHandler (info.Handler));");
|
||||
sw.WriteLine ("\t\t}");
|
||||
sw.WriteLine ();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue