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
1814dd90
Commit
1814dd90
authored
May 31, 2008
by
Rémi Denis-Courmont
Browse files
Simplify
parent
63930524
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/control/core.c
View file @
1814dd90
...
...
@@ -177,8 +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
);
if
(
vlc_object_alive
(
p_libvlc
)
)
while
(
!
vlc_object_wait
(
p_libvlc
)
);
while
(
vlc_object_alive
(
p_libvlc
)
)
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