Browse Source

avcodec/flashsv: use av_freep() for tmpblock

Signed-off-by: Paul B Mahol <onemda@gmail.com>
tags/n2.2-rc1
Paul B Mahol 12 years ago
parent
commit
82f5c4d737
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/flashsv.c

+ 1
- 1
libavcodec/flashsv.c View File

@@ -482,7 +482,7 @@ static av_cold int flashsv_decode_end(AVCodecContext *avctx)
av_frame_unref(&s->frame);

/* free the tmpblock */
av_free(s->tmpblock);
av_freep(&s->tmpblock);

return 0;
}


Loading…
Cancel
Save