mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-03-13 12:40:17 +00:00
Merge pull request #2016 from signalwire/count
[Core] Remove unused count variable from switch_core_session_execute_exten()
This commit is contained in:
commit
04dd67da00
@ -3005,7 +3005,7 @@ SWITCH_DECLARE(switch_status_t) switch_core_session_execute_exten(switch_core_se
|
|||||||
{
|
{
|
||||||
char *dp[25];
|
char *dp[25];
|
||||||
char *dpstr;
|
char *dpstr;
|
||||||
int argc, x, count = 0;
|
int argc, x;
|
||||||
uint32_t stack_count = 0;
|
uint32_t stack_count = 0;
|
||||||
switch_caller_profile_t *profile, *new_profile, *pp = NULL;
|
switch_caller_profile_t *profile, *new_profile, *pp = NULL;
|
||||||
switch_channel_t *channel = switch_core_session_get_channel(session);
|
switch_channel_t *channel = switch_core_session_get_channel(session);
|
||||||
@ -3059,8 +3059,6 @@ SWITCH_DECLARE(switch_status_t) switch_core_session_execute_exten(switch_core_se
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
count++;
|
|
||||||
|
|
||||||
extension = dialplan_interface->hunt_function(session, dparg, new_profile);
|
extension = dialplan_interface->hunt_function(session, dparg, new_profile);
|
||||||
UNPROTECT_INTERFACE(dialplan_interface);
|
UNPROTECT_INTERFACE(dialplan_interface);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user