Browse Source

ffprobe: check av_frame_alloc() failure.

tags/n2.2-rc1
Nicolas George 12 years ago
parent
commit
a55692a960
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      ffprobe.c

+ 4
- 0
ffprobe.c View File

@@ -1887,6 +1887,10 @@ static int read_interval_packets(WriterContext *w, AVFormatContext *fmt_ctx,
}

frame = av_frame_alloc();
if (!frame) {
ret = AVERROR(ENOMEM);
goto end;
}
while (!av_read_frame(fmt_ctx, &pkt)) {
if (selected_streams[pkt.stream_index]) {
AVRational tb = fmt_ctx->streams[pkt.stream_index]->time_base;


Loading…
Cancel
Save