# HG changeset patch # User chainsaw # Date 1146497923 25200 # Node ID e64eb333b63fc87b03f02d8f6b788e001f7899ae # Parent fb6570909c74dbcd91b04a997e83e139711be0a8 [svn] Properly nullify the tag pointer or we could be passing a stale one. diff -r fb6570909c74 -r e64eb333b63f Plugins/Input/mpg123/mpg123.c --- a/Plugins/Input/mpg123/mpg123.c Mon May 01 07:46:17 2006 -0700 +++ b/Plugins/Input/mpg123/mpg123.c Mon May 01 08:38:43 2006 -0700 @@ -529,6 +529,7 @@ { char *ret = NULL; taglib_file = taglib_file_new(filename); + taglib_tag = NULL; if(taglib_file) { taglib_tag = taglib_file_tag(taglib_file); taglib_ap = taglib_file_audioproperties(taglib_file);