summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuenter Bartsch <guenter@users.sourceforge.net>2001-06-11 00:50:36 +0000
committerGuenter Bartsch <guenter@users.sourceforge.net>2001-06-11 00:50:36 +0000
commit0974e94d3f71d4cbc12cde23cc7ebe122993405a (patch)
tree9780217fbbc0554320df354dcb3924689080ce71
parent58e22ca569e796b8bbb66d15808d4c9daad5f3d7 (diff)
downloadxine-lib-0974e94d3f71d4cbc12cde23cc7ebe122993405a.tar.gz
xine-lib-0974e94d3f71d4cbc12cde23cc7ebe122993405a.tar.bz2
fixed bug in load_plugins
CVS patchset: 160 CVS date: 2001/06/11 00:50:36
-rw-r--r--src/xine-engine/load_plugins.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/xine-engine/load_plugins.c b/src/xine-engine/load_plugins.c
index 028e19860..9d69399de 100644
--- a/src/xine-engine/load_plugins.c
+++ b/src/xine-engine/load_plugins.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: load_plugins.c,v 1.21 2001/06/09 17:07:22 guenter Exp $
+ * $Id: load_plugins.c,v 1.22 2001/06/11 00:50:36 guenter Exp $
*
*
* Load input/demux/audio_out/video_out/codec plugins
@@ -579,7 +579,6 @@ vo_driver_t *xine_load_video_output_plugin(config_values_t *config,
if(!(plugin = dlopen (str, RTLD_LAZY))) {
printf("load_plugins: video output plugin %s failed to link:\n%s\n",
str, dlerror());
- return NULL;
} else {
vo_info_t* (*getinfo) (void);
vo_info_t *vo_info;