Commit 8a95ee28 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

Gestures: The break statement here refers to the local for. Don't release the p_input in this case.

parent 7ba6034e
...@@ -329,7 +329,6 @@ static void RunIntf( intf_thread_t *p_intf ) ...@@ -329,7 +329,6 @@ static void RunIntf( intf_thread_t *p_intf )
{ {
if( val.i_int == list.p_list->p_values[i].i_int ) if( val.i_int == list.p_list->p_values[i].i_int )
{ {
vlc_object_release( p_input );
break; break;
} }
} }
...@@ -389,7 +388,6 @@ static void RunIntf( intf_thread_t *p_intf ) ...@@ -389,7 +388,6 @@ static void RunIntf( intf_thread_t *p_intf )
{ {
if( val.i_int == list.p_list->p_values[i].i_int ) if( val.i_int == list.p_list->p_values[i].i_int )
{ {
vlc_object_release( p_input );
break; break;
} }
} }
......
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