1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

lavfi: do not segfault on NULL passed to avfilter_get_by_name()

This commit is contained in:
Anton Khirnov
2013-04-07 07:33:24 +02:00
parent fa2a34cd40
commit f160c6a18a

View File

@@ -273,6 +273,9 @@ AVFilter *avfilter_get_by_name(const char *name)
{ {
AVFilter *f = NULL; AVFilter *f = NULL;
if (!name)
return NULL;
while ((f = avfilter_next(f))) while ((f = avfilter_next(f)))
if (!strcmp(f->name, name)) if (!strcmp(f->name, name))
return f; return f;