[xiph-commits] r15796 - trunk/ezstream/src

moritz at svn.xiph.org moritz at svn.xiph.org
Wed Mar 18 12:57:19 PDT 2009


Author: moritz
Date: 2009-03-18 12:57:15 -0700 (Wed, 18 Mar 2009)
New Revision: 15796

Modified:
   trunk/ezstream/src/metadata.c
Log:
Make metadata_get_name() return UTF8, which is what the rest of ezstream now
expects. From Roman Donchenko.


Modified: trunk/ezstream/src/metadata.c
===================================================================
--- trunk/ezstream/src/metadata.c	2009-03-18 19:55:20 UTC (rev 15795)
+++ trunk/ezstream/src/metadata.c	2009-03-18 19:57:15 UTC (rev 15796)
@@ -317,7 +317,7 @@
 	if (strlen(p1) == 0)
 		name = xstrdup("[unknown]");
 	else
-		name = xstrdup(p1);
+		name = CHARtoUTF8(p1);
 
 	xfree(filename);
 	return (name);



More information about the commits mailing list