mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-06 04:30:28 +00:00
Remove a couple of duplicate unlocks
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@70726 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -4277,14 +4277,12 @@ static int sla_trunk_exec(struct ast_channel *chan, void *data)
|
||||
AST_RWLIST_UNLOCK(&sla_trunks);
|
||||
if (!trunk) {
|
||||
ast_log(LOG_ERROR, "SLA Trunk '%s' not found!\n", trunk_name);
|
||||
AST_RWLIST_UNLOCK(&sla_trunks);
|
||||
pbx_builtin_setvar_helper(chan, "SLATRUNK_STATUS", "FAILURE");
|
||||
return 0;
|
||||
}
|
||||
if (trunk->chan) {
|
||||
ast_log(LOG_ERROR, "Call came in on %s, but the trunk is already in use!\n",
|
||||
trunk_name);
|
||||
AST_RWLIST_UNLOCK(&sla_trunks);
|
||||
pbx_builtin_setvar_helper(chan, "SLATRUNK_STATUS", "FAILURE");
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user