diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2001-07-27 21:46:59 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2001-07-27 21:46:59 +0000 |
commit | 2204ac019cd8f926bec54e426853b3993eefb532 (patch) | |
tree | c2707691d12f03e961066281fc7cc6b492856edc /src/xine-engine/xine.c | |
parent | 745e1f2a8ffa472119521b459c5083177cb3274c (diff) | |
download | xine-lib-2204ac019cd8f926bec54e426853b3993eefb532.tar.gz xine-lib-2204ac019cd8f926bec54e426853b3993eefb532.tar.bz2 |
Fixed xine_eject stuff and some small bugs about input plugins.
CVS patchset: 359
CVS date: 2001/07/27 21:46:59
Diffstat (limited to 'src/xine-engine/xine.c')
-rw-r--r-- | src/xine-engine/xine.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/xine-engine/xine.c b/src/xine-engine/xine.c index 064f7754f..4659fb993 100644 --- a/src/xine-engine/xine.c +++ b/src/xine-engine/xine.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: xine.c,v 1.37 2001/07/26 11:12:26 f1rmb Exp $ + * $Id: xine.c,v 1.38 2001/07/27 21:46:59 f1rmb Exp $ * * top-level xine functions * @@ -93,7 +93,12 @@ void xine_stop (xine_t *this) { if(this->cur_input_plugin) { this->cur_input_plugin->close(this->cur_input_plugin); - this->cur_input_plugin = NULL; + /* + * If we set it to NULL, xine_eject() will not work after + * a xine_stop() call. + * + * this->cur_input_plugin = NULL; + */ } printf ("xine_stop: done\n"); |