From 0d0fadc7817486a7fb20b8f2b0ad30459f282073 Mon Sep 17 00:00:00 2001 From: BJ Weschke Date: Fri, 23 Jun 2006 11:33:02 +0000 Subject: 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 --- apps/app_queue.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'apps/app_queue.c') 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; -- cgit v1.2.3