aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_meetme.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-06-21 15:21:16 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-06-21 15:21:16 +0000
commit876f55dafde96c02a0cbac0b15a5dbfa53e9ee7f (patch)
tree4d4ccf4eb27e863448654436a4bfd61c7fd4748f /apps/app_meetme.c
parenteea090876fbcc7fec0c00783078aa542a9704d02 (diff)
Remove a couple of duplicate unlocks
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@70726 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_meetme.c')
-rw-r--r--apps/app_meetme.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/apps/app_meetme.c b/apps/app_meetme.c
index 8c60713bd..2c90f291e 100644
--- a/apps/app_meetme.c
+++ b/apps/app_meetme.c
@@ -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;
}