diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-10-16 21:10:56 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-10-16 21:10:56 +0000 |
commit | 901d177e702252da8b13680b33a23849b6557d16 (patch) | |
tree | f4efc7f9ee61b09dfe8c08cf6e0334047362e296 | |
parent | a196de78b87a144155ce9ee43fda44cbfaed0ef2 (diff) | |
download | xine-lib-901d177e702252da8b13680b33a23849b6557d16.tar.gz xine-lib-901d177e702252da8b13680b33a23849b6557d16.tar.bz2 |
copy open pointer after plugin class is loaded
CVS patchset: 2837
CVS date: 2002/10/16 21:10:56
-rw-r--r-- | src/xine-engine/load_plugins.c | 5 |
1 files 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++; |