summaryrefslogtreecommitdiff
path: root/channels/chan_local.c
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2008-10-30 19:45:52 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2008-10-30 19:45:52 +0000
commit33f0058029118b584212bcabd5c6371be8a76b31 (patch)
tree8e6575caa5f9393e950aadefaa8439643874c617 /channels/chan_local.c
parent19f1e7e578624903d9e7f721e32c71a093ecd24b (diff)
Merged revisions 152922 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r152922 | tilghman | 2008-10-30 14:43:38 -0500 (Thu, 30 Oct 2008) | 6 lines Unlock before returning, when extension doesn't exist. (closes issue #13807) Reported by: eliel Patches: chan_local.c.patch uploaded by eliel (license 64) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@152923 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels/chan_local.c')
-rw-r--r--channels/chan_local.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/channels/chan_local.c b/channels/chan_local.c
index 5318796da..d83be6da3 100644
--- a/channels/chan_local.c
+++ b/channels/chan_local.c
@@ -521,6 +521,7 @@ static int local_call(struct ast_channel *ast, char *dest, int timeout)
if (!ast_exists_extension(NULL, p->chan->context, p->chan->exten, 1, p->owner->cid.cid_num)) {
ast_log(LOG_NOTICE, "No such extension/context %s@%s while calling Local channel\n", p->chan->exten, p->chan->context);
+ ast_mutex_unlock(&p->lock);
return -1;
}