GNOME Bugzilla – Bug 694162
Memory leaks due to extra ref in gtk_ui_manager_buildable_add_child()
Last modified: 2013-02-20 09:59:23 UTC
While chasing bug #674236, I found out, after Tristan's help and ideas, an extra g_object_ref() call in gtk_ui_manager_buildable_add_child(). It's making the object leaking, because the called gtk_ui_manager_insert_action_group() refs the child again.
Created attachment 236755 [details] [review] gtk patch for gtk+; Removes the extra g_object_ref() call.
Review of attachment 236755 [details] [review]: Looks correct to me.
Comment on attachment 236755 [details] [review] gtk patch Committing this patch on Milan's behalf.
Thanks a lot, Tristan.