aboutsummaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authormmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-03-20 18:02:42 +0000
committermmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-03-20 18:02:42 +0000
commitfd8043527de94ad50bca4ac176eb946064adb907 (patch)
tree89e1a04f596862c0c20cb1aeced23d8c1fc102b3 /main
parent7d478e0f1dd34440579a006fb468c64e79e091fb (diff)
Merged revisions 110272 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r110272 | mmichelson | 2008-03-20 13:01:36 -0500 (Thu, 20 Mar 2008) | 3 lines Add missing unlock ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.0@110273 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main')
-rw-r--r--main/dial.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/main/dial.c b/main/dial.c
index 95f709e68..ae6ea55fc 100644
--- a/main/dial.c
+++ b/main/dial.c
@@ -317,6 +317,7 @@ static int begin_dial(struct ast_dial *dial, struct ast_channel *chan)
AST_LIST_TRAVERSE(&dial->channels, channel, list) {
success += begin_dial_channel(channel, chan);
}
+ AST_LIST_UNLOCK(&dial->channels);
/* If number of failures matches the number of channels, then this truly failed */
return success;