Changeset 4466cc4ffaa424dd4b6c19e70d7a6e886253aa5f
- Timestamp:
- 25/11/06 03:22:38
(2 years ago)
- Author:
- Derk-Jan Hartman <hartman@videolan.org>
- git-committer:
- Derk-Jan Hartman <hartman@videolan.org> 1164421358 +0000
- git-parent:
[2ff5876f175757849e55e27a09307da677d97c6c]
- git-author:
- Derk-Jan Hartman <hartman@videolan.org> 1164421358 +0000
- Message:
* Fix an accidental change from [18009] and add a mutex destroy I forgot to commit
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r1b9fc13 |
r4466cc4 |
|
| 28 | 28 | Benjamin Mironer <bmironer at noos.fr> - Mac OS X fixes |
|---|
| 29 | 29 | Benoit Steiner <benny at via.ecp.fr> - MPEG system input, network input |
|---|
| | 30 | Bill <wenwuangel at hotmail .com> - memleak fixes |
|---|
| 30 | 31 | Bill Eldridge <bill at rfa.org> - documentation |
|---|
| 31 | 32 | Bob Maguire <maguirer at rjmaguire dot com> - addition of some controls to the OSX interface |
|---|
| … | … | |
| 56 | 57 | Dennis Lou <dlou99 at yahoo dot com> - ATSC support in the DVB module |
|---|
| 57 | 58 | Dermot McGahon <dermot at dspsrv dot com> - Bug fixes, RC interface loop and repeat |
|---|
| 58 | | Diego Petteno <flameeyes at gentoo dot org> - remove usage of internal ffmpeg symbols |
|---|
| | 59 | Diego Petteno <flameeyes at gentoo dot org> - remove usage of internal ffmpeg symbols, configure fixes |
|---|
| 59 | 60 | DirektX <direktx at freemail.hu> - Hungarian translation |
|---|
| 60 | 61 | Dugal Harris - DirectShow fixes and MJPEG patches |
|---|
| r6f1095e |
r4466cc4 |
|
| 860 | 860 | if( p_input->i_start > 0 ) |
|---|
| 861 | 861 | { |
|---|
| 862 | | if( p_input->i_start >= p_input->input.p_item->i_duration ) |
|---|
| | 862 | if( p_input->i_start >= val.i_time ) |
|---|
| 863 | 863 | { |
|---|
| 864 | 864 | msg_Warn( p_input, "invalid start-time ignored" ); |
|---|
| rd732fd2 |
r4466cc4 |
|
| 206 | 206 | PL_UNLOCK; |
|---|
| 207 | 207 | |
|---|
| | 208 | vlc_mutex_destroy( &p_playlist->p_stats->lock ); |
|---|
| 208 | 209 | if( p_playlist->p_stats ) |
|---|
| 209 | 210 | free( p_playlist->p_stats ); |
|---|