On 17/03/2013 16:45, Colomban Wendling wrote:
gtk_tree_model_get(model, &iter, SYMBOLS_COLUMN_TAG, &tag, -1);
When retrieving the TMTag from the tree model, it gets a reference (since it's inserted as a GBoxed type with ref/unref as copy/free funcs), so you need to unref it.
I fixed this with a few other reffing issues.
Oops, thanks.