aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-01-17 16:33:24 +0000
committermmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2008-01-17 16:33:24 +0000
commit6920892814f0a74f4e6a315f12d051e8463f13dd (patch)
tree1f8ffb9ac11998b2fd9b15f86db35d898fe91c95
parent6be93e1bdce1ca5ce080697aa60effea6856bc5c (diff)
state_interface could be NULL, so use the never-NULL cur->state_interface for this check
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@98994 f38db490-d61c-443f-a65b-d21fe96a405b
-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 ed13c3d5b..a2db787a7 100644
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -842,7 +842,7 @@ static struct member *create_queue_member(const char *interface, const char *mem
ast_copy_string(cur->membername, interface, sizeof(cur->membername));
if (!strchr(cur->interface, '/'))
ast_log(LOG_WARNING, "No location at interface '%s'\n", interface);
- cur->status = ast_device_state(state_interface);
+ cur->status = ast_device_state(cur->state_interface);
}
return cur;