summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReinhard Tartler <siretart@tauware.de>2010-02-11 16:22:59 +0000
committerReinhard Tartler <siretart@tauware.de>2010-02-11 16:22:59 +0000
commit9d442d2d7d24cae9eeaba1f8eee7ec58a4e7d272 (patch)
treeb00544d9dd7816be220d5c07c15914e65259c273
parentafc97d47358f8c4ce0e9989bcd308806d3770409 (diff)
Fix crash when max_ref_frames was out of range.
This might have been exploitable. Fixes first crash of issue840. backport r18388 by michael Originally committed as revision 21757 to svn://svn.ffmpeg.org/ffmpeg/branches/0.5
-rw-r--r--libavcodec/snow.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/libavcodec/snow.c b/libavcodec/snow.c
index b4a0d5a8fd..5a8bcb8fb6 100644
--- a/libavcodec/snow.c
+++ b/libavcodec/snow.c
@@ -3554,7 +3554,7 @@ static void decode_qlogs(SnowContext *s){
}
static int decode_header(SnowContext *s){
- int plane_index;
+ int plane_index, tmp;
uint8_t kstate[32];
memset(kstate, MID_STATE, sizeof(kstate));
@@ -3583,7 +3583,12 @@ static int decode_header(SnowContext *s){
s->chroma_v_shift= get_symbol(&s->c, s->header_state, 0);
s->spatial_scalability= get_rac(&s->c, s->header_state);
// s->rate_scalability= get_rac(&s->c, s->header_state);
- s->max_ref_frames= get_symbol(&s->c, s->header_state, 0)+1;
+ tmp= get_symbol(&s->c, s->header_state, 0)+1;
+ if(tmp < 1 || tmp > MAX_REF_FRAMES){
+ av_log(s->avctx, AV_LOG_ERROR, "reference frame count is %d\n", tmp);
+ return -1;
+ }
+ s->max_ref_frames= tmp;
decode_qlogs(s);
}
@@ -3649,6 +3654,7 @@ static av_cold int common_init(AVCodecContext *avctx){
int i, j;
s->avctx= avctx;
+ s->max_ref_frames=1; //just make sure its not an invalid value in case of no initial keyframe
dsputil_init(&s->dsp, avctx);