Skip to content
Snippets Groups Projects
Commit fcfe303b authored by Thomas Guillem's avatar Thomas Guillem
Browse files

filter: don't proxy variables not configurable

This fixes an assert when trying proxying the "module-name" variable.

Regression from 38545d87
parent d5ec278b
No related branches found
No related tags found
No related merge requests found
......@@ -55,7 +55,7 @@ void filter_AddProxyCallbacks( vlc_object_t *obj, filter_t *filter,
{
char *name = *pname;
int var_type = var_Type(filter, name);
if (var_Type(obj, name))
if (var_Type(obj, name) || config_GetType(name) == 0)
{
free(name);
continue;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment