Routines called by "g_node_traverse()" return a Boolean - FALSE to

continue traversing, TRUE to stop traversing - so make
"free_node_data()" return FALSE.

svn path=/trunk/; revision=12110
This commit is contained in:
Guy Harris 2004-09-27 08:30:25 +00:00
parent 1d400fd77f
commit fdfdd39080
1 changed files with 1 additions and 0 deletions

View File

@ -2498,6 +2498,7 @@ static gboolean
free_node_data(GNode *node, gpointer data _U_)
{
g_free(node->data);
return FALSE;
}
static void