aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--apps/app_queue.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/app_queue.c b/apps/app_queue.c
index 2fa0a940b..ed4447848 100644
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -5558,7 +5558,7 @@ static char *__queues_show(struct mansession *s, int fd, int argc, char **argv)
ao2_lock(queues);
while ((q = ao2_iterator_next(&queue_iter))) {
float sl;
- struct call_queue *realtime_queue;
+ struct call_queue *realtime_queue = NULL;
ao2_lock(q);
/* This check is to make sure we don't print information for realtime
@@ -5569,7 +5569,7 @@ static char *__queues_show(struct mansession *s, int fd, int argc, char **argv)
ao2_unlock(q);
queue_unref(q);
continue;
- } else {
+ } else if (q->realtime) {
queue_unref(realtime_queue);
}
if (argc == 3 && strcasecmp(q->name, argv[2])) {