On Mon, Oct 5, 2015 at 8:50 PM, Luca Barbato <[email protected]> wrote: > Prevent a NULL-dereference. > > CC: [email protected] > --- > avconv_filter.c | 8 ++++++-- > 1 file changed, 6 insertions(+), 2 deletions(-) > > diff --git a/avconv_filter.c b/avconv_filter.c > index 976d521..0127580 100644 > --- a/avconv_filter.c > +++ b/avconv_filter.c > @@ -702,8 +702,12 @@ int configure_filtergraph(FilterGraph *fg) > return ret; > avfilter_inout_free(&inputs); > > - for (cur = outputs, i = 0; cur; cur = cur->next, i++) > - configure_output_filter(fg, fg->outputs[i], cur); > + for (cur = outputs, i = 0; cur; cur = cur->next, i++) { > + OutputFilter *ofilter = fg->outputs[i]; > + if (ofilter->ost) > + configure_output_filter(fg, ofilter, cur); > + } > + > avfilter_inout_free(&outputs); > > if ((ret = avfilter_graph_config(fg->graph, NULL)) < 0) > -- > 2.5.0
OK -- Vittorio _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
