Browse Source

avcodec/rv34: fix crash while seeking on very damaged file

Fixes null pointer dereference
Fixes Ticket2093

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.3
Michael Niedermayer 11 years ago
parent
commit
9195c26d45
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/rv34.c

+ 1
- 1
libavcodec/rv34.c View File

@@ -1685,7 +1685,7 @@ int ff_rv34_decode_frame(AVCodecContext *avctx,

/* first slice */
if (si.start == 0) {
if (s->mb_num_left > 0) {
if (s->mb_num_left > 0 && s->current_picture_ptr) {
av_log(avctx, AV_LOG_ERROR, "New frame but still %d MB left.\n",
s->mb_num_left);
ff_er_frame_end(&s->er);


Loading…
Cancel
Save