# HG changeset patch # User nenolod # Date 1142717456 28800 # Node ID 67b5c99acf2bbd001a32cec973ecdec1367e8877 # Parent 9376a3cad3a326e01f32a635560444cc4ab95d0c [svn] - we don't really need to free here, messes up on ID3v2 a *lot* diff -r 9376a3cad3a3 -r 67b5c99acf2b Plugins/General/scrobbler/tags/tags.c --- a/Plugins/General/scrobbler/tags/tags.c Sat Mar 18 13:21:00 2006 -0800 +++ b/Plugins/General/scrobbler/tags/tags.c Sat Mar 18 13:30:56 2006 -0800 @@ -775,16 +775,6 @@ void metatag_delete(metatag_t *meta) { - /* - * Genre, track, and MBID are the exceptions and must be freed - * (Thanks ID3v1) - */ - if(meta->track != NULL) - free(meta->track); - if(meta->genre != NULL) - free(meta->genre); - if(meta->mb != NULL) - free(meta->mb); if(meta->wma != NULL) freeWMA(meta->wma); if(meta->id3v1 != NULL)