Commit 8b214b7c authored by Warren Dukes's avatar Warren Dukes

fix a minor issue!

git-svn-id: https://svn.musicpd.org/mpd/trunk@205 09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent a8d3895e
......@@ -507,7 +507,7 @@ int mp3Read(mp3DecodeData * data, Buffer * cb, DecoderControl * dc) {
while((ret = decodeNextFrameHeader(data))==DECODE_CONT);
if(ret==DECODE_SKIP) skip = 1;
else if(ret==DECODE_BREAK) break;
if(data->muteFrame) {
if(!data->muteFrame) {
while((ret = decodeNextFrame(data))==DECODE_CONT);
if(ret==DECODE_BREAK) break;
}
......
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