Commit 2192f893 authored by Michael Niedermayer's avatar Michael Niedermayer

ffserver: fix null pointer dereference

Fixes CID732208
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent fca435fe
...@@ -3974,6 +3974,7 @@ static void load_module(const char *filename) ...@@ -3974,6 +3974,7 @@ static void load_module(const char *filename)
"%s: init function 'ffserver_module_init()' not found\n", "%s: init function 'ffserver_module_init()' not found\n",
filename); filename);
dlclose(dll); dlclose(dll);
return;
} }
init_func(); init_func();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment