Commit 0d8ba194 authored by Thomas Jansen's avatar Thomas Jansen

tag_id3: strip leading and trailing whitespace from ID3 tags

Fix for bug #1491.
parent a51fada1
......@@ -40,7 +40,7 @@
*/
static id3_utf8_t * processID3FieldString (int is_id3v1, const id3_ucs4_t *ucs4, int type)
{
id3_utf8_t *utf8;
id3_utf8_t *utf8, *utf8_stripped;
id3_latin1_t *isostr;
char *encoding;
......@@ -74,7 +74,11 @@ static id3_utf8_t * processID3FieldString (int is_id3v1, const id3_ucs4_t *ucs4,
return NULL;
}
}
return utf8;
utf8_stripped = (id3_utf8_t *)g_strdup(g_strstrip((gchar *)utf8));
free(utf8);
return utf8_stripped;
}
static struct tag *getID3Info(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment