[Asterisk-cvs] asterisk/apps app_meetme.c,1.41,1.42

markster at lists.digium.com markster at lists.digium.com
Wed Jun 16 22:56:44 CDT 2004


Update of /usr/cvsroot/asterisk/apps
In directory mongoose.digium.com:/tmp/cvs-serv4465/apps

Modified Files:
	app_meetme.c 
Log Message:
Must be inside lock when finding start


Index: app_meetme.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_meetme.c,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -d -r1.41 -r1.42
--- app_meetme.c	14 Jun 2004 03:12:46 -0000	1.41
+++ app_meetme.c	17 Jun 2004 02:42:42 -0000	1.42
@@ -961,10 +961,11 @@
 {
 	struct ast_config *cfg;
 	struct ast_variable *var;
-	struct ast_conference *cnf = confs;
+	struct ast_conference *cnf;
 
 	/* Check first in the conference list */
 	ast_mutex_lock(&conflock);
+	cnf = confs;
 	while (cnf) {
 		if (!strcmp(confno, cnf->confno)) 
 			break;




More information about the svn-commits mailing list