From 097426600056a112752e92eb1c13f0d6900f3907 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franti=C5=A1ek=20Dvo=C5=99=C3=A1k?= Date: Mon, 19 Sep 2005 16:14:02 +0000 Subject: *BUGFIX* added missing mutex init in xine_ticket (fixes pause assert with win32-pthreads) added missing destroys due to pthread doc spells and houskeeping use directx of older versions too, possibility to use xine w/o HW accel CVS patchset: 7738 CVS date: 2005/09/19 16:14:02 --- src/xine-engine/load_plugins.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/xine-engine/load_plugins.c') diff --git a/src/xine-engine/load_plugins.c b/src/xine-engine/load_plugins.c index d7005b733..24f51af45 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.215 2005/09/11 22:07:48 miguelfreitas Exp $ + * $Id: load_plugins.c,v 1.216 2005/09/19 16:14:02 valtri Exp $ * * * Load input/demux/audio_out/video_out/codec plugins @@ -2506,7 +2506,9 @@ void _x_dispose_plugins (xine_t *this) { for (i = 0; this->plugin_catalog->prio_desc[i]; i++) free(this->plugin_catalog->prio_desc[i]); - + + pthread_mutex_destroy(&this->plugin_catalog->lock); + free (this->plugin_catalog); } } -- cgit v1.2.3