Mercurial > audlegacy-plugins
changeset 1271:173a67e7e4f8
disable unescape local file for now.
author | Yoshiki Yazawa <yaz@cc.rim.or.jp> |
---|---|
date | Sun, 15 Jul 2007 19:50:15 +0900 |
parents | d73eed18f3f4 |
children | 463729c87300 |
files | src/xspf/xspf.c |
diffstat | 1 files changed, 4 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/xspf/xspf.c Sun Jul 15 19:22:12 2007 +0900 +++ b/src/xspf/xspf.c Sun Jul 15 19:50:15 2007 +0900 @@ -112,13 +112,16 @@ gchar *str = (gchar *)xmlNodeGetContent(nptr); gchar *tmp; +#if 0 if(!is_remote(str)) { /* local file */ tmp = (gchar *)xmlURIUnescapeString(str, -1, NULL); } else { /* streaming */ tmp = g_strdup(str); } - +#else + tmp = g_strdup(str); // XXX +#endif location = g_strdup_printf("%s%s", base ? base : "", tmp); xmlFree(str);