Browse Source

Fix SIGSEGV in rv10-null-pointer-500k.rm.

patch by Wolfgang Scherer, Wolfgang__ . __Scherer__ @ __gmx__ . __de

Originally committed as revision 5293 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Wolfgang Scherer Diego Biurrun 20 years ago
parent
commit
60dfd14778
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/rv10.c

+ 1
- 1
libavcodec/rv10.c View File

@@ -737,7 +737,7 @@ static int rv10_decode_frame(AVCodecContext *avctx,
rv10_decode_packet(avctx, buf, buf_size);
}

if(s->mb_y>=s->mb_height){
if(s->current_picture_ptr != NULL && s->mb_y>=s->mb_height){
ff_er_frame_end(s);
MPV_frame_end(s);



Loading…
Cancel
Save