changeset 3832:194c6d2c25bc

don't str_to_utf8() here because of filename encoding
author William Pitcock <nenolod@atheme.org>
date Sun, 21 Oct 2007 08:44:14 -0500
parents 2e30e8a4b421
children f4f30254833b
files src/audacious/tuple.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/audacious/tuple.c	Sun Oct 21 07:11:05 2007 -0500
+++ b/src/audacious/tuple.c	Sun Oct 21 08:44:14 2007 -0500
@@ -254,7 +254,7 @@
     if (string == NULL)
         value->value.string = NULL;
     else
-        value->value.string = str_to_utf8(string);
+        value->value.string = g_strdup(string);
 
     TUPLE_UNLOCK_WRITE();
     return TRUE;