summaryrefslogtreecommitdiff
path: root/playlist.c
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <waker@users.sourceforge.net>2014-04-30 15:17:48 +0200
committerGravatar Alexey Yakovenko <waker@users.sourceforge.net>2014-04-30 15:17:48 +0200
commit3e1ab26d8c88c5f420101a1e52cee52dfa0e3586 (patch)
tree41058332c4ef05ef2b08ff5d14204b96a834cbe1 /playlist.c
parentfb78930d5ccf439719bc42e178aa7dc9a806d969 (diff)
removed shift-jis hack from cuesheet parser, this should now work without the hack
Diffstat (limited to 'playlist.c')
-rw-r--r--playlist.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/playlist.c b/playlist.c
index 7f55eda0..085dc314 100644
--- a/playlist.c
+++ b/playlist.c
@@ -880,13 +880,7 @@ pl_get_qvalue_from_cue (const uint8_t *p, int sz, char *out) {
}
else
{
- res = junk_recode (str, l, recbuf, sizeof (recbuf)-1, "SHIFT-JIS");
- if (res > 0) {
- strcpy (str, recbuf);
- }
- else {
- strcpy (str, "<UNRECOGNIZED CHARSET>");
- }
+ strcpy (str, "<UNRECOGNIZED CHARSET>");
}
}