aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_meetme.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-06-21 15:23:36 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-06-21 15:23:36 +0000
commit1762a860c6a35d3ef0b0fbc9a6127e14d94eca3a (patch)
tree839b292f7ebfcdc3603ce0dc156e74cf69a509f5 /apps/app_meetme.c
parentca0ddd9d7aca7f2c05b2ea7508f2671a723b603b (diff)
Merged revisions 70726 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r70726 | russell | 2007-06-21 10:21:16 -0500 (Thu, 21 Jun 2007) | 2 lines Remove a couple of duplicate unlocks ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@70728 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 ebb1403a4..97101b91b 100644
--- a/apps/app_meetme.c
+++ b/apps/app_meetme.c
@@ -4360,14 +4360,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;
}