[svn-commits] kpfleming: branch 1.4 r44298 - in /branches/1.4: ./ apps/app_queue.c

svn-commits at lists.digium.com svn-commits at lists.digium.com
Tue Oct 3 13:18:30 MST 2006


Author: kpfleming
Date: Tue Oct  3 15:18:29 2006
New Revision: 44298

URL: http://svn.digium.com/view/asterisk?rev=44298&view=rev
Log:
Merged revisions 44296 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.2

........
r44296 | kpfleming | 2006-10-03 15:14:13 -0500 (Tue, 03 Oct 2006) | 2 lines

fix a logic error in my previous fix to the queue reload code

........

Modified:
    branches/1.4/   (props changed)
    branches/1.4/apps/app_queue.c

Propchange: branches/1.4/
------------------------------------------------------------------------------
Binary property 'branch-1.2-merged' - no diff available.

Modified: branches/1.4/apps/app_queue.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/apps/app_queue.c?rev=44298&r1=44297&r2=44298&view=diff
==============================================================================
--- branches/1.4/apps/app_queue.c (original)
+++ branches/1.4/apps/app_queue.c Tue Oct  3 15:18:29 2006
@@ -3825,11 +3825,15 @@
 				}
 
 				/* Free remaining members marked as delme */
-				for (prev = NULL, cur = q->members, next = cur ? cur->next : NULL;
+				for (prev = NULL, cur = q->members;
 				     cur;
-				     cur = next, next = cur ? cur->next : NULL) {
-					if (!cur->delme)
+				     cur = next) {
+					next = cur->next;
+
+					if (!cur->delme) {
+						prev = cur;
 						continue;
+					}
 
 					if (prev)
 						prev->next = next;



More information about the svn-commits mailing list