aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy-gtk/empathy-contact-menu.c
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@gmail.com>2010-02-11 01:51:53 +0800
committerXavier Claessens <xclaesse@gmail.com>2010-02-11 03:14:20 +0800
commit41f9f0a717f8519cf8c69cb043198980fe503ebc (patch)
tree3cff33d8c48cc69a2778f27f56b15372416decba /libempathy-gtk/empathy-contact-menu.c
parentddbfc6ec6a3b2ffab1f83471dbf1f82630292f8a (diff)
downloadgsoc2013-empathy-41f9f0a717f8519cf8c69cb043198980fe503ebc.tar
gsoc2013-empathy-41f9f0a717f8519cf8c69cb043198980fe503ebc.tar.gz
gsoc2013-empathy-41f9f0a717f8519cf8c69cb043198980fe503ebc.tar.bz2
gsoc2013-empathy-41f9f0a717f8519cf8c69cb043198980fe503ebc.tar.lz
gsoc2013-empathy-41f9f0a717f8519cf8c69cb043198980fe503ebc.tar.xz
gsoc2013-empathy-41f9f0a717f8519cf8c69cb043198980fe503ebc.tar.zst
gsoc2013-empathy-41f9f0a717f8519cf8c69cb043198980fe503ebc.zip
Fix leaked GtkMenu
GtkMenu is initially unowned, which means ref_count is 1 and floating flag is set. gtk_menu_popup temporarily adds a ref, that will be dropped when the menu is popped down. So once the menu is popped up, we call g_object_ref_sink() to clear the floating flag, and g_object_unref() to drop the initial ref. Only the ref from gtk_menu_popup stay, and the menu will be finalized when it is popped down. Fixes bug #609567
Diffstat (limited to 'libempathy-gtk/empathy-contact-menu.c')
-rw-r--r--libempathy-gtk/empathy-contact-menu.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-contact-menu.c b/libempathy-gtk/empathy-contact-menu.c
index 3fdaf6d4b..3d194fced 100644
--- a/libempathy-gtk/empathy-contact-menu.c
+++ b/libempathy-gtk/empathy-contact-menu.c
@@ -475,7 +475,6 @@ room_sub_menu_data_new (EmpathyContact *contact,
static void
room_sub_menu_data_free (RoomSubMenuData *data)
{
- /* FIXME: seems this is never called... */
g_object_unref (data->contact);
g_object_unref (data->chatroom);
g_slice_free (RoomSubMenuData, data);