Browse Source

libavfilter/lavfutils: remove useless NULL check on codec context

The code would crash before if it was NULL

Fixes CID733804
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.1
Michael Niedermayer 13 years ago
parent
commit
fd9e88fe60
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      libavfilter/lavfutils.c

+ 1
- 2
libavfilter/lavfutils.c View File

@@ -85,8 +85,7 @@ int ff_load_image(uint8_t *data[4], int linesize[4],
av_image_copy(data, linesize, (const uint8_t **)frame->data, frame->linesize, *pix_fmt, *w, *h);

end:
if (codec_ctx)
avcodec_close(codec_ctx);
avcodec_close(codec_ctx);
if (format_ctx)
avformat_close_input(&format_ctx);
av_freep(&frame);


Loading…
Cancel
Save