summaryrefslogtreecommitdiffstats
path: root/fixes/zinf-fixes/zinf-ds-noutfrecoding.patch
diff options
context:
space:
mode:
authorSuren A. Chilingaryan <csa@suren.me>2021-03-12 03:55:34 +0100
committerSuren A. Chilingaryan <csa@suren.me>2021-03-12 03:55:34 +0100
commit60bd665e74cfeeaf70882173a0dd56c883e2014a (patch)
tree8a0066bb9f0259becac5605641e8e1eed1ae0e89 /fixes/zinf-fixes/zinf-ds-noutfrecoding.patch
downloadrusxmms2-60bd665e74cfeeaf70882173a0dd56c883e2014a.tar.gz
rusxmms2-60bd665e74cfeeaf70882173a0dd56c883e2014a.tar.bz2
rusxmms2-60bd665e74cfeeaf70882173a0dd56c883e2014a.tar.xz
rusxmms2-60bd665e74cfeeaf70882173a0dd56c883e2014a.zip
Added to git tree
Diffstat (limited to 'fixes/zinf-fixes/zinf-ds-noutfrecoding.patch')
-rw-r--r--fixes/zinf-fixes/zinf-ds-noutfrecoding.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/fixes/zinf-fixes/zinf-ds-noutfrecoding.patch b/fixes/zinf-fixes/zinf-ds-noutfrecoding.patch
new file mode 100644
index 0000000..6100a1d
--- /dev/null
+++ b/fixes/zinf-fixes/zinf-ds-noutfrecoding.patch
@@ -0,0 +1,20 @@
+diff -dPNur zinf-2.2.5/plm/metadata/id3lib/id3lib.cpp zinf-2.2.5-new/plm/metadata/id3lib/id3lib.cpp
+--- zinf-2.2.5/plm/metadata/id3lib/id3lib.cpp 2004-01-30 13:06:02.000000000 +0100
++++ zinf-2.2.5-new/plm/metadata/id3lib/id3lib.cpp 2005-07-19 23:08:05.000000000 +0200
+@@ -321,16 +321,8 @@
+ if (field)
+ if (field->Get (buffer, sizeof buffer) > 0) {
+ #ifdef HAVE_GLIB
+- if (g_utf8_validate (buffer, -1 , NULL)){
+ result = buffer;
+ return true;
+- }
+- else {
+- utfbuffer=g_convert(buffer, sizeof buffer, "UTF-8", charset.c_str(), NULL, NULL, NULL);
+- result=utfbuffer;
+- g_free(utfbuffer);
+- return true;
+- }
+ #else
+ result=buffer;
+ return true;