mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-02 11:58:40 +00:00
Merged revisions 164270 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r164270 | mmichelson | 2008-12-15 10:16:47 -0600 (Mon, 15 Dec 2008) | 4 lines Fix a compile warning and a logic error that could have been bad for non-realtime queues ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@164274 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -5649,7 +5649,7 @@ static char *__queues_show(struct mansession *s, int fd, int argc, char **argv)
|
|||||||
ao2_lock(queues);
|
ao2_lock(queues);
|
||||||
while ((q = ao2_iterator_next(&queue_iter))) {
|
while ((q = ao2_iterator_next(&queue_iter))) {
|
||||||
float sl;
|
float sl;
|
||||||
struct call_queue *realtime_queue;
|
struct call_queue *realtime_queue = NULL;
|
||||||
|
|
||||||
ao2_lock(q);
|
ao2_lock(q);
|
||||||
/* This check is to make sure we don't print information for realtime
|
/* This check is to make sure we don't print information for realtime
|
||||||
@@ -5660,7 +5660,7 @@ static char *__queues_show(struct mansession *s, int fd, int argc, char **argv)
|
|||||||
ao2_unlock(q);
|
ao2_unlock(q);
|
||||||
queue_unref(q);
|
queue_unref(q);
|
||||||
continue;
|
continue;
|
||||||
} else {
|
} else if (q->realtime) {
|
||||||
queue_unref(realtime_queue);
|
queue_unref(realtime_queue);
|
||||||
}
|
}
|
||||||
if (argc == 3 && strcasecmp(q->name, argv[2])) {
|
if (argc == 3 && strcasecmp(q->name, argv[2])) {
|
||||||
|
|||||||
Reference in New Issue
Block a user