aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorWarren Dukes <warren.dukes@gmail.com>2004-03-05 14:39:51 +0000
committerWarren Dukes <warren.dukes@gmail.com>2004-03-05 14:39:51 +0000
commit8b214b7c8c9740836b398c914d982f471b3d985c (patch)
treed2b30d3e19d6a522ccc19fe65eeb31d254940720 /src
parenta8d3895e324c388442c290b071f754406461c4a2 (diff)
downloadmpd-8b214b7c8c9740836b398c914d982f471b3d985c.tar.gz
mpd-8b214b7c8c9740836b398c914d982f471b3d985c.tar.xz
mpd-8b214b7c8c9740836b398c914d982f471b3d985c.zip
fix a minor issue!
git-svn-id: https://svn.musicpd.org/mpd/trunk@205 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src')
-rw-r--r--src/mp3_decode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mp3_decode.c b/src/mp3_decode.c
index a19f85e51..58a1ab548 100644
--- a/src/mp3_decode.c
+++ b/src/mp3_decode.c
@@ -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;
}