[vlc-devel] commit: Probe interface plugis strictly ( Rémi Denis-Courmont )

git version control git at videolan.org
Thu Sep 25 17:31:52 CEST 2008


vlc | branch: master | Rémi Denis-Courmont <rdenis at simphalempin.com> | Thu Sep 25 18:33:12 2008 +0300| [ca6669acaae8a1e0c4ec8ad7e98e6a3a837a8d61] | committer: Rémi Denis-Courmont 

Probe interface plugis strictly

We don't want a different interface than the one requested (if any)

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ca6669acaae8a1e0c4ec8ad7e98e6a3a837a8d61
---

 src/interface/interface.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/interface/interface.c b/src/interface/interface.c
index 7e0fc92..b850eeb 100644
--- a/src/interface/interface.c
+++ b/src/interface/interface.c
@@ -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 )
     {




More information about the vlc-devel mailing list