From f94b73f0d7e50d1adde2e1e77b1185155432fe87 Mon Sep 17 00:00:00 2001 From: William King Date: Wed, 12 Jun 2013 21:39:14 -0700 Subject: [PATCH] New compiler warning(error). Unused assignment before the pointer is reassigned. --- src/mod/applications/mod_fifo/mod_fifo.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/mod/applications/mod_fifo/mod_fifo.c b/src/mod/applications/mod_fifo/mod_fifo.c index ffa1ec8903..78aaf88139 100644 --- a/src/mod/applications/mod_fifo/mod_fifo.c +++ b/src/mod/applications/mod_fifo/mod_fifo.c @@ -2982,9 +2982,6 @@ SWITCH_STANDARD_APP(fifo_function) switch_channel_answer(channel); - originator_cp = switch_channel_get_caller_profile(channel); - originatee_cp = switch_channel_get_caller_profile(other_channel); - if (switch_channel_inbound_display(other_channel)) { if (switch_channel_direction(other_channel) == SWITCH_CALL_DIRECTION_INBOUND) { switch_channel_set_flag(other_channel, CF_BLEG);