aboutsummaryrefslogtreecommitdiffstats
path: root/main/pbx.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-11-28 00:24:19 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-11-28 00:24:19 +0000
commit78bd1dcd5f0d7e2e7d50a1a57a386b901f942ab3 (patch)
tree90868de3d406229ff22e00228afa6221f33a3c57 /main/pbx.c
parent25a29b29a6c0e9dc7e30b7c1d3662fdd9ed5ced1 (diff)
Merged revisions 89893 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r89893 | russell | 2007-11-27 18:20:13 -0600 (Tue, 27 Nov 2007) | 4 lines - update documentation for some of the goto functions to note that they handle locking the channel as needed - update ast_explicit_goto() to lock the channel as needed ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@89915 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/pbx.c')
-rw-r--r--main/pbx.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/main/pbx.c b/main/pbx.c
index 857b7e218..e3498c5ad 100644
--- a/main/pbx.c
+++ b/main/pbx.c
@@ -5719,6 +5719,8 @@ int ast_explicit_goto(struct ast_channel *chan, const char *context, const char
if (!chan)
return -1;
+ ast_channel_lock(chan);
+
if (!ast_strlen_zero(context))
ast_copy_string(chan->context, context, sizeof(chan->context));
if (!ast_strlen_zero(exten))
@@ -5730,6 +5732,8 @@ int ast_explicit_goto(struct ast_channel *chan, const char *context, const char
chan->priority--;
}
+ ast_channel_unlock(chan);
+
return 0;
}