Commit ca6669ac authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Probe interface plugis strictly

We don't want a different interface than the one requested (if any)
parent 0e1e63f7
......@@ -101,7 +101,7 @@ intf_thread_t* __intf_Create( vlc_object_t *p_this, const char *psz_module )
/* Choose the best module */
p_intf->psz_intf = strdup( psz_module );
p_intf->p_module = module_need( p_intf, "interface", psz_module, false );
p_intf->p_module = module_need( p_intf, "interface", psz_module, true );
if( p_intf->p_module == NULL )
{
......
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