Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Gautam Chitnis
web-ui-redesign
Commits
47e1374a
Commit
47e1374a
authored
May 30, 2008
by
Pierre d'Herbemont
Browse files
libvlc: Don't wait if p_libvlc is dying in libvlc_wait().
parent
21702e21
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/control/core.c
View file @
47e1374a
...
...
@@ -177,7 +177,8 @@ void libvlc_wait( libvlc_instance_t *p_i )
{
libvlc_int_t
*
p_libvlc
=
p_i
->
p_libvlc_int
;
vlc_object_lock
(
p_libvlc
);
while
(
!
vlc_object_wait
(
p_libvlc
)
);
if
(
vlc_object_alive
(
p_libvlc
)
)
while
(
!
vlc_object_wait
(
p_libvlc
)
);
vlc_object_unlock
(
p_libvlc
);
}
...
...
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