This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
lzw: fix potential integer overflow.
tags/n0.11
Ronald S. Bultje
14 years ago
parent
b7b1509d06
commit
0399fe0fd2
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/lzw.c
+ 1
- 1
libavcodec/lzw.c
View File
@@ -102,7 +102,7 @@ void ff_lzw_decode_tail(LZWState *p)
if(s->mode == FF_LZW_GIF) {
while (s->bs > 0) {
if (s->
pbuf + s->
bs >= s->ebuf) {
if (s->bs >= s->e
buf - s->p
buf) {
s->pbuf = s->ebuf;
break;
} else {
Write
Preview
Loading…
Cancel
Save