From 6b8d2191f4d3885d654e06d2f72818b5083b2f4c Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Sun, 1 Feb 2009 13:01:35 +0200 Subject: [PATCH] Interaction: logically dead code --- src/interface/interaction.c | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) diff --git a/src/interface/interaction.c b/src/interface/interaction.c index f041878804..93381dd7d1 100644 --- a/src/interface/interaction.c +++ b/src/interface/interaction.c @@ -502,29 +502,15 @@ static int DialogSend( vlc_object_t *p_this, interaction_dialog_t *p_dialog ) p_dialog->i_flags & DIALOG_BLOCKING_ERROR || p_dialog->i_flags & DIALOG_NONBLOCKING_ERROR ) { - bool b_found = false; - int i; p_dialog->p_interaction = p_interaction; p_dialog->p_parent = p_this; /* Check if we have already added this dialog */ vlc_object_lock( p_interaction ); - for( i = 0 ; i< p_interaction->i_dialogs; i++ ) - { - if( p_interaction->pp_dialogs[i] == p_dialog ) - b_found = true; - } /* Add it to the queue, the main loop will send the orders to the * interface */ - if( ! b_found ) - { - INSERT_ELEM( p_interaction->pp_dialogs, - p_interaction->i_dialogs, - p_interaction->i_dialogs, - p_dialog ); - } - else - p_dialog->i_status = UPDATED_DIALOG; + INSERT_ELEM( p_interaction->pp_dialogs, p_interaction->i_dialogs, + p_interaction->i_dialogs, p_dialog ); if( p_dialog->i_type == INTERACT_DIALOG_TWOWAY ) /* Wait for answer */ { -- 2.39.2