diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-05-21 14:35:52 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2002-05-21 14:35:52 +0000 |
commit | 3c8adbc5f49fa74383fdfd20f1eb8ce3bd0b8887 (patch) | |
tree | 9076cc6d2a538cfb92b824e84f7a689e99430562 | |
parent | 2e5df937ac240447ea38a361daea68d0a3687adb (diff) | |
download | xine-lib-3c8adbc5f49fa74383fdfd20f1eb8ce3bd0b8887.tar.gz xine-lib-3c8adbc5f49fa74383fdfd20f1eb8ce3bd0b8887.tar.bz2 |
Remove unneeded mutex unlock.
CVS patchset: 1922
CVS date: 2002/05/21 14:35:52
-rw-r--r-- | src/xine-engine/xine.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/xine-engine/xine.c b/src/xine-engine/xine.c index 93fe48480..41cbdbc3f 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.130 2002/05/21 00:50:18 siggi Exp $ + * $Id: xine.c,v 1.131 2002/05/21 14:35:52 f1rmb Exp $ * * top-level xine functions * @@ -500,8 +500,6 @@ int xine_eject (xine_t *this) { if (((this->status == XINE_STOP) || (this->status == XINE_LOGO)) && this->last_input_plugin && this->last_input_plugin->eject_media) { - pthread_mutex_unlock (&this->xine_lock); - status = this->last_input_plugin->eject_media (this->last_input_plugin); } |