# HG changeset patch # User Daniel Atallah # Date 1216783807 0 # Node ID b79cfdcb704e899b2d018cb5b4c4866f2b7592df # Parent 3ec514b987282dd28ac3938b023b4427dca7b22b Jan Kratochvil noticed there was a race condition in the treeview tooltip code, this fixes it. Fixes #6229. diff -r 3ec514b98728 -r b79cfdcb704e pidgin/pidgintooltip.c --- a/pidgin/pidgintooltip.c Wed Jul 23 00:36:50 2008 +0000 +++ b/pidgin/pidgintooltip.c Wed Jul 23 03:30:07 2008 +0000 @@ -59,6 +59,7 @@ destroy_tooltip_data(PidginTooltipData *data) { gtk_tree_path_free(data->common.treeview.path); + pidgin_tooltip_destroy(); g_free(data); }