summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2008-01-31 21:31:15 +0000
committerMark Michelson <mmichelson@digium.com>2008-01-31 21:31:15 +0000
commit815658d35e8e603f709e9ddb0a196c5f1f32399e (patch)
tree139d2600faeb7323adaf7b13f0cd8d3a5ff7368e /apps
parent6ea87be94211d83f6af69e141266d45ae3401136 (diff)
Handle the case of a NULL state_interface when checking a realtime member.
Thanks to jmls for finding this issue. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@101576 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps')
-rw-r--r--apps/app_queue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_queue.c b/apps/app_queue.c
index 9e1d9066e..c8690ff44 100644
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -1316,7 +1316,7 @@ static void rt_handle_member_record(struct call_queue *q, char *interface, const
m->dead = 0; /* Do not delete this one. */
if (paused_str)
m->paused = paused;
- if (strcasecmp(state_interface, m->state_interface)) {
+ if (strcasecmp(ast_strlen_zero(state_interface) ? interface : state_interface, m->state_interface)) {
remove_from_interfaces(m->state_interface);
ast_copy_string(m->state_interface, state_interface, sizeof(m->state_interface));
add_to_interfaces(m->state_interface);