Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
4466cc4f
Commit
4466cc4f
authored
Nov 25, 2006
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Fix an accidental change from [18009] and add a mutex destroy I forgot to commit
parent
2ff5876f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
2 deletions
+4
-2
THANKS
THANKS
+2
-1
src/input/input.c
src/input/input.c
+1
-1
src/playlist/engine.c
src/playlist/engine.c
+1
-0
No files found.
THANKS
View file @
4466cc4f
...
@@ -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
...
...
src/input/input.c
View file @
4466cc4f
...
@@ -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"
);
}
}
...
...
src/playlist/engine.c
View file @
4466cc4f
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment