diff --git a/THANKS b/THANKS index ae555a93c7..e2febe6a86 100644 --- a/THANKS +++ b/THANKS @@ -27,6 +27,7 @@ Basil Achermann - Patch to handle esc and space key eve Barak Ori - Bidi fixes Benjamin Mironer - Mac OS X fixes Benoit Steiner - MPEG system input, network input +Bill - memleak fixes Bill Eldridge - documentation Bob Maguire - addition of some controls to the OSX interface Brian Robb - win32 CD/DVD drive detection in wx, bug fixes @@ -55,7 +56,7 @@ Davor Orel - Mac OS X icons Dennis van Amerongen - x264 options unification Dennis Lou - ATSC support in the DVB module Dermot McGahon - Bug fixes, RC interface loop and repeat -Diego Petteno - remove usage of internal ffmpeg symbols +Diego Petteno - remove usage of internal ffmpeg symbols, configure fixes DirektX - Hungarian translation Dugal Harris - DirectShow fixes and MJPEG patches Emmanuel Blindauer - aRts audio output diff --git a/src/input/input.c b/src/input/input.c index c1b7fda86f..810d1bccd1 100644 --- a/src/input/input.c +++ b/src/input/input.c @@ -859,7 +859,7 @@ static int Init( input_thread_t * p_input ) if( p_input->i_start > 0 ) { - if( p_input->i_start >= p_input->input.p_item->i_duration ) + if( p_input->i_start >= val.i_time ) { msg_Warn( p_input, "invalid start-time ignored" ); } diff --git a/src/playlist/engine.c b/src/playlist/engine.c index cca6fdaaff..3b9d8495af 100644 --- a/src/playlist/engine.c +++ b/src/playlist/engine.c @@ -205,6 +205,7 @@ void playlist_Destroy( playlist_t *p_playlist ) PL_UNLOCK; + vlc_mutex_destroy( &p_playlist->p_stats->lock ); if( p_playlist->p_stats ) free( p_playlist->p_stats );