aboutsummaryrefslogtreecommitdiffstats
path: root/main/channel.c
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2009-02-11 14:44:47 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2009-02-11 14:44:47 +0000
commit086b1e3d7e677ca81c5fc1ecc735fa4df3ad3fd5 (patch)
treeb6086f244398f07b999e57605a8e05a2406ab583 /main/channel.c
parent11cc929d0ff3f8d9735669308faa5245d6cded6f (diff)
Tell the device state core a change happened when a channel is freed but not a specific state.
We need to do this because while we know that the freeing of the channel may cause something to become not in use we do not know this for sure. There may be another channel that is still up which would cause it to be in use. (closes issue #13238) Reported by: kowalma Patches: 20090121__bug13238.diff.txt uploaded by Corydon76 (license 14) Tested by: alecdavis git-svn-id: http://svn.digium.com/svn/asterisk/trunk@174844 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/channel.c')
-rw-r--r--main/channel.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/main/channel.c b/main/channel.c
index 4f613f439..4510ce252 100644
--- a/main/channel.c
+++ b/main/channel.c
@@ -1410,7 +1410,10 @@ void ast_channel_free(struct ast_channel *chan)
ast_free(chan);
AST_RWLIST_UNLOCK(&channels);
- ast_devstate_changed_literal(AST_DEVICE_NOT_INUSE, name);
+ /* Queue an unknown state, because, while we know that this particular
+ * instance is dead, we don't know the state of all other possible
+ * instances. */
+ ast_devstate_changed_literal(AST_DEVICE_UNKNOWN, name);
}
struct ast_datastore *ast_channel_datastore_alloc(const struct ast_datastore_info *info, const char *uid)