Commit 4466cc4f authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

* Fix an accidental change from [18009] and add a mutex destroy I forgot to commit

parent 2ff5876f
...@@ -27,6 +27,7 @@ Basil Achermann <vlc at acherma dot com> - Patch to handle esc and space key eve ...@@ -27,6 +27,7 @@ Basil Achermann <vlc at acherma dot com> - Patch to handle esc and space key eve
Barak Ori <barakori at gmail dot com> - Bidi fixes Barak Ori <barakori at gmail dot com> - Bidi fixes
Benjamin Mironer <bmironer at noos.fr> - Mac OS X fixes Benjamin Mironer <bmironer at noos.fr> - Mac OS X fixes
Benoit Steiner <benny at via.ecp.fr> - MPEG system input, network input Benoit Steiner <benny at via.ecp.fr> - MPEG system input, network input
Bill <wenwuangel at hotmail .com> - memleak fixes
Bill Eldridge <bill at rfa.org> - documentation Bill Eldridge <bill at rfa.org> - documentation
Bob Maguire <maguirer at rjmaguire dot com> - addition of some controls to the OSX interface Bob Maguire <maguirer at rjmaguire dot com> - addition of some controls to the OSX interface
Brian Robb <vascy at hotmail dot com> - win32 CD/DVD drive detection in wx, bug fixes Brian Robb <vascy at hotmail dot com> - win32 CD/DVD drive detection in wx, bug fixes
...@@ -55,7 +56,7 @@ Davor Orel <syntheticamac at yahoo.it> - Mac OS X icons ...@@ -55,7 +56,7 @@ Davor Orel <syntheticamac at yahoo.it> - Mac OS X icons
Dennis van Amerongen <Dennis dot vanAmerongen at nob dot nl> - x264 options unification Dennis van Amerongen <Dennis dot vanAmerongen at nob dot nl> - x264 options unification
Dennis Lou <dlou99 at yahoo dot com> - ATSC support in the DVB module Dennis Lou <dlou99 at yahoo dot com> - ATSC support in the DVB module
Dermot McGahon <dermot at dspsrv dot com> - Bug fixes, RC interface loop and repeat Dermot McGahon <dermot at dspsrv dot com> - Bug fixes, RC interface loop and repeat
Diego Petteno <flameeyes at gentoo dot org> - remove usage of internal ffmpeg symbols Diego Petteno <flameeyes at gentoo dot org> - remove usage of internal ffmpeg symbols, configure fixes
DirektX <direktx at freemail.hu> - Hungarian translation DirektX <direktx at freemail.hu> - Hungarian translation
Dugal Harris - DirectShow fixes and MJPEG patches Dugal Harris - DirectShow fixes and MJPEG patches
Emmanuel Blindauer <manu at agat.net> - aRts audio output Emmanuel Blindauer <manu at agat.net> - aRts audio output
......
...@@ -859,7 +859,7 @@ static int Init( input_thread_t * p_input ) ...@@ -859,7 +859,7 @@ static int Init( input_thread_t * p_input )
if( p_input->i_start > 0 ) 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" ); msg_Warn( p_input, "invalid start-time ignored" );
} }
......
...@@ -205,6 +205,7 @@ void playlist_Destroy( playlist_t *p_playlist ) ...@@ -205,6 +205,7 @@ void playlist_Destroy( playlist_t *p_playlist )
PL_UNLOCK; PL_UNLOCK;
vlc_mutex_destroy( &p_playlist->p_stats->lock );
if( p_playlist->p_stats ) if( p_playlist->p_stats )
free( p_playlist->p_stats ); free( p_playlist->p_stats );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment