1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

Merge commit 'f160c6a18a574b4c7d063e0a748037cbbd9912ee'

* commit 'f160c6a18a574b4c7d063e0a748037cbbd9912ee':
  lavfi: do not segfault on NULL passed to avfilter_get_by_name()

Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer
2013-04-12 15:13:59 +02:00

View File

@@ -392,6 +392,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;