diff options
author | Heiko Schaefer <heikos@users.sourceforge.net> | 2001-10-06 17:40:38 +0000 |
---|---|---|
committer | Heiko Schaefer <heikos@users.sourceforge.net> | 2001-10-06 17:40:38 +0000 |
commit | 9ef14fba2ba1d2a5e97e5d1659e7daf97a4a22ba (patch) | |
tree | cfa70578accc8d9a351fec542de08358e819ac03 /src | |
parent | f3738769622645d31de2100084f490ff3e4e51dd (diff) | |
download | xine-lib-9ef14fba2ba1d2a5e97e5d1659e7daf97a4a22ba.tar.gz xine-lib-9ef14fba2ba1d2a5e97e5d1659e7daf97a4a22ba.tar.bz2 |
do not die on loading bad demuxer plugin(s)
CVS patchset: 753
CVS date: 2001/10/06 17:40:38
Diffstat (limited to 'src')
-rw-r--r-- | src/xine-engine/load_plugins.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/xine-engine/load_plugins.c b/src/xine-engine/load_plugins.c index ba8fb5654..2af397936 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.42 2001/10/06 14:56:37 miguelfreitas Exp $ + * $Id: load_plugins.c,v 1.43 2001/10/06 17:40:38 heikos Exp $ * * * Load input/demux/audio_out/video_out/codec plugins @@ -94,7 +94,6 @@ void load_demux_plugins (xine_t *this, if(!(plugin = dlopen (str, RTLD_LAZY))) { fprintf(stderr, "load_plugins: cannot open demux plugin %s:\n%s\n", str, dlerror()); - exit(1); } else { void *(*initplug) (int, config_values_t *); |