gtktreeviewaccessible: free the string in the correct position

This commit is contained in:
Javier Jardon 2011-07-06 14:36:29 +01:00
parent ad0c0b8eb3
commit 8a84056d0a

View File

@ -3121,10 +3121,10 @@ toggle_cell_toggled (GailCell *cell)
{
pathstring = gtk_tree_path_to_string (path);
g_signal_emit_by_name (cur_renderer->data, "toggled", pathstring);
g_free (pathstring);
}
g_list_free (renderers);
g_free (pathstring);
gtk_tree_path_free (path);
}