vsrc_buffer: when no frame is available, return an error instead of segfaulting.

pull/5/head
Anton Khirnov 13 years ago
parent cfec77aaf8
commit a03f8ea0a8
  1. 2
      libavfilter/vsrc_buffer.c

@ -162,7 +162,7 @@ static int request_frame(AVFilterLink *link)
if (!av_fifo_size(c->fifo)) {
av_log(link->src, AV_LOG_ERROR,
"request_frame() called with no available frame!\n");
//return -1;
return AVERROR(EINVAL);
}
av_fifo_generic_read(c->fifo, &buf, sizeof(buf), NULL);

Loading…
Cancel
Save