Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
da01154c
Commit
da01154c
authored
Mar 10, 2007
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't abort when nothing found in playlist.
parent
6906a7c0
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
2 deletions
+6
-2
src/playlist/control.c
src/playlist/control.c
+2
-0
src/playlist/engine.c
src/playlist/engine.c
+2
-1
src/playlist/search.c
src/playlist/search.c
+2
-1
No files found.
src/playlist/control.c
View file @
da01154c
...
...
@@ -75,6 +75,8 @@ static int PlaylistVAControl( playlist_t * p_playlist, int i_query, va_list args
{
p_node
=
p_playlist
->
status
.
p_node
;
assert
(
p_node
);
if
(
!
p_node
)
break
;
}
p_playlist
->
request
.
i_status
=
PLAYLIST_RUNNING
;
p_playlist
->
request
.
i_skip
=
0
;
...
...
src/playlist/engine.c
View file @
da01154c
...
...
@@ -594,7 +594,8 @@ void playlist_FetcherLoop( playlist_fetcher_t *p_obj )
vlc_mutex_unlock
(
&
p_obj
->
object_lock
);
if
(
p_item
)
{
assert
(
p_item
->
p_meta
);
if
(
!
p_item
->
p_meta
)
return
;
if
(
!
b_fetch_art
)
{
input_MetaFetch
(
p_playlist
,
p_item
);
...
...
src/playlist/search.c
View file @
da01154c
...
...
@@ -87,7 +87,8 @@ playlist_item_t * playlist_ItemGetByInputId( playlist_t *p_playlist,
playlist_item_t
*
p_root
)
{
int
i
;
assert
(
p_root
!=
NULL
);
if
(
!
p_root
)
return
NULL
;
for
(
i
=
0
;
i
<
p_root
->
i_children
;
i
++
)
{
if
(
p_root
->
pp_children
[
i
]
->
i_children
==
-
1
&&
...
...
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