[svn-commits] dvossel: branch 1.8 r311497 - in /branches/1.8: ./ apps/app_meetme.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Mar 22 10:25:28 CDT 2011


Author: dvossel
Date: Tue Mar 22 10:25:24 2011
New Revision: 311497

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=311497
Log:
Merged revisions 311496 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

........
  r311496 | dvossel | 2011-03-22 10:24:45 -0500 (Tue, 22 Mar 2011) | 2 lines
  
  Fixes memory leak in MeetMe AMI action
........

Modified:
    branches/1.8/   (props changed)
    branches/1.8/apps/app_meetme.c

Propchange: branches/1.8/
------------------------------------------------------------------------------
Binary property 'branch-1.6.2-merged' - no diff available.

Modified: branches/1.8/apps/app_meetme.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/apps/app_meetme.c?view=diff&rev=311497&r1=311496&r2=311497
==============================================================================
--- branches/1.8/apps/app_meetme.c (original)
+++ branches/1.8/apps/app_meetme.c Tue Mar 22 10:25:24 2011
@@ -4772,12 +4772,12 @@
 	/* Find the right conference */
 	AST_LIST_LOCK(&confs);
 	AST_LIST_TRAVERSE(&confs, cnf, list) {
-		user_iter = ao2_iterator_init(cnf->usercontainer, 0);
 		/* If we ask for one particular, and this isn't it, skip it */
 		if (!ast_strlen_zero(conference) && strcmp(cnf->confno, conference))
 			continue;
 
 		/* Show all the users */
+		user_iter = ao2_iterator_init(cnf->usercontainer, 0);
 		while ((user = ao2_iterator_next(&user_iter))) {
 			total++;
 			astman_append(s,




More information about the svn-commits mailing list