git.videolan.org
/
vlc.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
VOUT_CLOSE is unsafe and pointless. Do not use it.
[vlc.git]
/
modules
/
gui
/
maemo
/
maemo.c
diff --git
a/modules/gui/maemo/maemo.c
b/modules/gui/maemo/maemo.c
index
0690062
..
82c6a1d
100644
(file)
--- a/
modules/gui/maemo/maemo.c
+++ b/
modules/gui/maemo/maemo.c
@@
-254,8
+254,7
@@
static void Run( intf_thread_t *p_intf )
if( p_vout )
{
- if( vout_Control( p_vout, VOUT_CLOSE ) != VLC_SUCCESS )
- vout_Control( p_vout, VOUT_REPARENT, 0 );
+ vout_Control( p_vout, VOUT_REPARENT, 0 );
vlc_object_release( p_vout );
}