Commit 9fd326a0 authored by Laurent Aimar's avatar Laurent Aimar

Fixed a segfault in hotkeys.

parent fdef07da
......@@ -192,7 +192,7 @@ static void Run( intf_thread_t *p_intf )
/* Update the vout */
p_last_vout = p_vout;
p_vout = input_GetVout( p_input );
p_vout = p_input ? input_GetVout( p_input ) : NULL;
/* Register OSD channels */
if( p_vout && p_vout != p_last_vout )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment