aboutsummaryrefslogtreecommitdiffstats
path: root/main/pbx.c
diff options
context:
space:
mode:
authormmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-12-09 20:31:21 +0000
committermmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-12-09 20:31:21 +0000
commit11a7469348d621a65da2c65e596974c89165f2a5 (patch)
tree19c803c0d419a8927c7b00d82d788a2fc7f11fa1 /main/pbx.c
parentdec9b2a43568e27f87036ac7b780f8438978ea93 (diff)
Merged revisions 162266 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ................ r162266 | mmichelson | 2008-12-09 14:30:07 -0600 (Tue, 09 Dec 2008) | 14 lines Merged revisions 162265 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r162265 | mmichelson | 2008-12-09 14:28:44 -0600 (Tue, 09 Dec 2008) | 6 lines If we fail to start a thread for the pbx to run in, we need to be sure to decrease the number of active calls on the system. This fix may relate to ABE-1713, but it is not certain yet. ........ ................ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.0@162268 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/pbx.c')
-rw-r--r--main/pbx.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/main/pbx.c b/main/pbx.c
index 3b5b831e9..b6f702af5 100644
--- a/main/pbx.c
+++ b/main/pbx.c
@@ -3976,6 +3976,7 @@ enum ast_pbx_result ast_pbx_start(struct ast_channel *c)
/* Start a new thread, and get something handling this channel. */
if (ast_pthread_create_detached(&t, NULL, pbx_thread, c)) {
ast_log(LOG_WARNING, "Failed to create new channel thread\n");
+ decrease_call_count();
return AST_PBX_FAILED;
}