break if eob is reached to avoid reading one too much byte

Originally committed as revision 8498 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Baptiste Coudurier 2007-03-24 23:23:05 +00:00
parent ccba88d764
commit 36376fa3ba
1 changed files with 1 additions and 0 deletions

View File

@ -77,6 +77,7 @@ static int lzw_get_code(struct LZWState * s)
s->bs = sizbuf;
if(!sizbuf) {
s->eob_reached = 1;
break;
}
}
s->bbuf |= (*s->pbuf++) << s->bbits;