Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
7def690c
Commit
7def690c
authored
Feb 20, 2008
by
ivoire
Browse files
Delete a test which is always true.
parent
7b7da74c
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/playlist/engine.c
View file @
7def690c
...
...
@@ -319,10 +319,7 @@ check_input:
* - Request, running requested -> start new item
* - Request, stopped requested -> collect garbage
*/
if
(
(
!
p_playlist
->
request
.
b_request
&&
p_playlist
->
status
.
i_status
!=
PLAYLIST_STOPPED
)
||
(
p_playlist
->
request
.
b_request
&&
p_playlist
->
request
.
i_status
!=
PLAYLIST_STOPPED
)
)
if
(
p_playlist
->
request
.
i_status
!=
PLAYLIST_STOPPED
)
{
msg_Dbg
(
p_playlist
,
"starting new item"
);
p_item
=
playlist_NextItem
(
p_playlist
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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