summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-05-02 10:04:22 +0200
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2011-05-02 11:13:29 +0200
commitd3c9c1d52480ac251d06419bdf144b02c7bacd60 (patch)
treefe01bae4ef98bc3e7ed42343bfd1b82caa4169ba
parent8562c5e1f120d2ef33406d527ecb5599be01be20 (diff)
downloadempathy-d3c9c1d52480ac251d06419bdf144b02c7bacd60.tar.gz
main_window_flash_foreach: don't leak the pixbuf returned by empathy_pixbuf_from_icon_name
-rw-r--r--src/empathy-main-window.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/empathy-main-window.c b/src/empathy-main-window.c
index b4c1254df..851a424ea 100644
--- a/src/empathy-main-window.c
+++ b/src/empathy-main-window.c
@@ -220,6 +220,8 @@ main_window_flash_foreach (GtkTreeModel *model,
pixbuf = empathy_individual_store_get_individual_status_icon (
GET_PRIV (data->window)->individual_store,
individual);
+ if (pixbuf != NULL)
+ g_object_ref (pixbuf);
}
gtk_tree_store_set (GTK_TREE_STORE (model), iter,
@@ -240,6 +242,7 @@ main_window_flash_foreach (GtkTreeModel *model,
g_object_unref (individual);
tp_clear_object (&contact);
+ tp_clear_object (&pixbuf);
return FALSE;
}