summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorBJ Weschke <bweschke@btwtech.com>2006-06-23 11:33:02 +0000
committerBJ Weschke <bweschke@btwtech.com>2006-06-23 11:33:02 +0000
commit0d0fadc7817486a7fb20b8f2b0ad30459f282073 (patch)
treef330a5755e8ca3616be9b57ceb0bdbe76dc2bb15 /apps
parent2f238654def8b4b9410ef62a3c4c0590072836ed (diff)
Merged revisions 35669 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r35669 | bweschke | 2006-06-23 06:30:17 -0500 (Fri, 23 Jun 2006) | 3 lines We should lock the queue before we go making changes to member interface statuses. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@35670 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps')
-rw-r--r--apps/app_queue.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/app_queue.c b/apps/app_queue.c
index c85be14ce..2153e04be 100644
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -3746,8 +3746,10 @@ static void reload_queues(void)
else
ast_log(LOG_DEBUG, "XXX Leaking a little memory :( XXX\n");
} else {
+ ast_mutex_lock(&q->lock);
for (cur = q->members; cur; cur = cur->next)
cur->status = ast_device_state(cur->interface);
+ ast_mutex_unlock(&q->lock);
}
}
AST_LIST_TRAVERSE_SAFE_END;