git.videolan.org
/
ffmpeg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
lag_read_prob_header: fix out of array access
[ffmpeg.git]
/
libavcodec
/
lagarith.c
diff --git
a/libavcodec/lagarith.c
b/libavcodec/lagarith.c
index
6af0d09
..
0611abf
100644
(file)
--- a/
libavcodec/lagarith.c
+++ b/
libavcodec/lagarith.c
@@
-158,8
+158,8
@@
static int lag_read_prob_header(lag_rac *rac, GetBitContext *gb)
av_log(rac->avctx, AV_LOG_ERROR, "Invalid probability run encountered.\n");
return -1;
}
- if (prob > 25
7
- i)
- prob = 25
7
- i;
+ if (prob > 25
6
- i)
+ prob = 25
6
- i;
for (j = 0; j < prob; j++)
rac->prob[++i] = 0;
}