stripReturnChar() in validateUtf8tag()
git-svn-id: https://svn.musicpd.org/mpd/trunk@2001 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
parent
ab0b6ce56f
commit
26d4e89d15
10
src/tag.c
10
src/tag.c
@ -54,16 +54,20 @@ void printMpdTag(FILE * fp, MpdTag * tag) {
|
||||
temp = latin1StrToUtf8Dup(str); \
|
||||
free(str); \
|
||||
str = temp; \
|
||||
stripReturnChar(str); \
|
||||
} \
|
||||
}
|
||||
|
||||
void validateUtf8Tag(MpdTag * tag) {
|
||||
fixUtf8(tag->artist);
|
||||
stripReturnChar(tag->artist);
|
||||
fixUtf8(tag->album);
|
||||
stripReturnChar(tag->artist);
|
||||
fixUtf8(tag->track);
|
||||
stripReturnChar(tag->artist);
|
||||
fixUtf8(tag->title);
|
||||
stripReturnChar(tag->artist);
|
||||
fixUtf8(tag->name);
|
||||
stripReturnChar(tag->artist);
|
||||
}
|
||||
|
||||
#ifdef HAVE_ID3TAG
|
||||
@ -99,28 +103,24 @@ MpdTag * parseId3Tag(struct id3_tag * tag) {
|
||||
str = getID3Info(tag,ID3_FRAME_ARTIST);
|
||||
if(str) {
|
||||
if(!ret) ret = newMpdTag();
|
||||
stripReturnChar(str);
|
||||
ret->artist = str;
|
||||
}
|
||||
|
||||
str = getID3Info(tag,ID3_FRAME_TITLE);
|
||||
if(str) {
|
||||
if(!ret) ret = newMpdTag();
|
||||
stripReturnChar(str);
|
||||
ret->title = str;
|
||||
}
|
||||
|
||||
str = getID3Info(tag,ID3_FRAME_ALBUM);
|
||||
if(str) {
|
||||
if(!ret) ret = newMpdTag();
|
||||
stripReturnChar(str);
|
||||
ret->album = str;
|
||||
}
|
||||
|
||||
str = getID3Info(tag,ID3_FRAME_TRACK);
|
||||
if(str) {
|
||||
if(!ret) ret = newMpdTag();
|
||||
stripReturnChar(str);
|
||||
ret->track = str;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user