mirror of https://github.com/mpv-player/mpv
filters/f_lavfi: fix null dereference on empty graph
This commit is contained in:
parent
2b1e9a6537
commit
995283bd7a
|
@ -904,6 +904,9 @@ struct mp_lavfi *mp_lavfi_create_graph(struct mp_filter *parent,
|
|||
char *hwdec_interop,
|
||||
char **graph_opts, const char *graph)
|
||||
{
|
||||
if (!graph)
|
||||
return NULL;
|
||||
|
||||
struct lavfi *c = lavfi_alloc(parent);
|
||||
if (!c)
|
||||
return NULL;
|
||||
|
|
Loading…
Reference in New Issue