# HG changeset patch # User Matti Hamalainen # Date 1213364688 -10800 # Node ID 4eb5a651bbc4d1a56cf7fdfb4cc0941771706db6 # Parent b96bbd08d54b424f789e82aa0234e3e2d344e5d7 Properly fix my own fucked up changes. Sorry for the inconvenience. diff -r b96bbd08d54b -r 4eb5a651bbc4 src/audacious/tuple.c --- a/src/audacious/tuple.c Fri Jun 13 16:43:51 2008 +0300 +++ b/src/audacious/tuple.c Fri Jun 13 16:44:48 2008 +0300 @@ -151,7 +151,7 @@ tuple_associate_data(Tuple *tuple, const gint cnfield, const gchar *field, TupleValueType ftype); static gboolean -_tuple_associate_raw_string(Tuple *tuple, const gint nfield, const gchar *field, const gchar *string) +_tuple_associate_raw_string(Tuple *tuple, const gint nfield, const gchar *field, gchar *string) { TupleValue *value; @@ -159,7 +159,7 @@ if ((value = tuple_associate_data(tuple, nfield, field, TUPLE_STRING)) == NULL) return FALSE; - value->value.string = NULL; + value->value.string = string; TUPLE_UNLOCK_WRITE(); return TRUE;