From 901d177e702252da8b13680b33a23849b6557d16 Mon Sep 17 00:00:00 2001 From: Guenter Bartsch Date: Wed, 16 Oct 2002 21:10:56 +0000 Subject: copy open pointer after plugin class is loaded CVS patchset: 2837 CVS date: 2002/10/16 21:10:56 --- src/xine-engine/load_plugins.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/xine-engine/load_plugins.c b/src/xine-engine/load_plugins.c index 0bc17c9ff..a71f50010 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.99 2002/10/14 15:47:37 guenter Exp $ + * $Id: load_plugins.c,v 1.100 2002/10/16 21:10:56 guenter Exp $ * * * Load input/demux/audio_out/video_out/codec plugins @@ -355,7 +355,8 @@ static void *_load_plugin_class(xine_t *this, && info->API == target->API && !strcasecmp(info->id, target->id) && info->version == target->version){ - + + target->open = info->open; return info->init(this, data); } info++; -- cgit v1.2.3