(Old svn revision: 1902)

This commit is contained in:
Johannes Zellner
2006-08-15 22:03:18 +00:00
parent 035ae4f363
commit 873ed52c03

View File

@@ -416,14 +416,11 @@ gint compare_string_list_item(GtkTreeModel *model, GtkTreeIter *iter1, GtkTreeIt
s2 = "";
ret = strcmp(s1, s2);
/* if not commented it produces segfaults
if commented it produces mem-leak X-( ->> have to fix */
/*if(s1 == NULL)
if(s1 != NULL)
g_free(s1);
if(s2 != NULL)
g_free(s2);*/
g_free(s2);
return ret;
}