Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Steve Lhomme
VLC
Commits
807116e6
Commit
807116e6
authored
Mar 30, 2008
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't yield the playlist object when it's dead already
parent
6aea9319
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
src/input/control.c
src/input/control.c
+4
-1
No files found.
src/input/control.c
View file @
807116e6
...
...
@@ -598,7 +598,10 @@ int input_vaControl( input_thread_t *p_input, int i_query, va_list args )
static
void
NotifyPlaylist
(
input_thread_t
*
p_input
)
{
playlist_t
*
p_playlist
=
pl_Yield
(
p_input
);
playlist_t
*
p_playlist
=
pl_Get
(
p_input
);
if
(
p_playlist
->
b_die
)
return
;
vlc_object_yield
(
p_playlist
);
var_SetInteger
(
p_playlist
,
"item-change"
,
p_input
->
p
->
input
.
p_item
->
i_id
);
pl_Release
(
p_input
);
...
...
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