diff options
author | J. Alexander Treuman <jat@spatialrift.net> | 2006-06-21 16:22:46 +0000 |
---|---|---|
committer | J. Alexander Treuman <jat@spatialrift.net> | 2006-06-21 16:22:46 +0000 |
commit | fd6696e46a4137cfdffeacf9e79348164e4bfea3 (patch) | |
tree | d7215e1d9ce6228deb45ef24fd601a60345e6462 | |
parent | c6dbba6c5dc37ecb79195bb515beeffdb0e380a6 (diff) | |
download | mpd-fd6696e46a4137cfdffeacf9e79348164e4bfea3.tar.gz mpd-fd6696e46a4137cfdffeacf9e79348164e4bfea3.tar.xz mpd-fd6696e46a4137cfdffeacf9e79348164e4bfea3.zip |
Silly jat, don't use newMpdTag as a variable name!
git-svn-id: https://svn.musicpd.org/mpd/trunk@4279 09075e82-0dd4-0310-85a5-a0d7c8717e4f
-rw-r--r-- | src/inputPlugins/mp3_plugin.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/inputPlugins/mp3_plugin.c b/src/inputPlugins/mp3_plugin.c index 30d1cfe02..605c10aff 100644 --- a/src/inputPlugins/mp3_plugin.c +++ b/src/inputPlugins/mp3_plugin.c @@ -260,7 +260,7 @@ static void mp3_parseId3Tag(mp3DecodeData * data, signed long tagsize, MpdTag ** id3_length_t count; id3_byte_t const *id3_data; id3_byte_t * allocated = NULL; - MpdTag * newMpdTag; + MpdTag * tmpMpdTag; count = data->stream.bufend - data->stream.this_frame; @@ -300,10 +300,10 @@ static void mp3_parseId3Tag(mp3DecodeData * data, signed long tagsize, MpdTag ** if(!id3Tag) goto fail; if(mpdTag) { - newMpdTag = parseId3Tag(id3Tag); - if(newMpdTag) { + tmpMpdTag = parseId3Tag(id3Tag); + if(tmpMpdTag) { if(*mpdTag) freeMpdTag(*mpdTag); - *mpdTag = newMpdTag; + *mpdTag = tmpMpdTag; } } |