cmdutils: reset *picref_ptr to NULL in get_filtered_frame()
Avoid the presence of an invalid pointer, fix a crash in case of get_filtered_frame() failure.
This commit is contained in:
parent
328810390d
commit
0d65e0f8cb
@ -908,6 +908,7 @@ int get_filtered_video_frame(AVFilterContext *ctx, AVFrame *frame,
|
|||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
AVFilterBufferRef *picref;
|
AVFilterBufferRef *picref;
|
||||||
|
*picref_ptr = NULL;
|
||||||
|
|
||||||
if ((ret = avfilter_request_frame(ctx->inputs[0])) < 0)
|
if ((ret = avfilter_request_frame(ctx->inputs[0])) < 0)
|
||||||
return ret;
|
return ret;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user