Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
a0329834
Commit
a0329834
authored
Jun 04, 2008
by
Rémi Denis-Courmont
Browse files
Remove another unsafe sout cleanup hack
parent
031c6028
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/playlist/engine.c
View file @
a0329834
...
...
@@ -209,21 +209,6 @@ static void ObjectGarbageCollector( playlist_t *p_playlist, bool b_force )
vlc_object_release
(
p_obj
);
vlc_object_release
(
(
vout_thread_t
*
)
p_obj
);
}
#ifdef ENABLE_SOUT
while
(
(
p_obj
=
vlc_object_find
(
p_playlist
,
VLC_OBJECT_SOUT
,
FIND_CHILD
)
)
)
{
if
(
p_obj
->
p_parent
!=
VLC_OBJECT
(
p_playlist
)
)
{
vlc_object_release
(
p_obj
);
break
;
}
msg_Dbg
(
p_playlist
,
"garbage collector destroying 1 sout"
);
vlc_object_detach
(
p_obj
);
vlc_object_release
(
p_obj
);
sout_DeleteInstance
(
(
sout_instance_t
*
)
p_obj
);
}
#endif
p_playlist
->
b_cant_sleep
=
false
;
vlc_mutex_unlock
(
&
p_playlist
->
gc_lock
);
}
...
...
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