diff --git a/apps/app_meetme.c b/apps/app_meetme.c
index c26c8fa7fc8602e62819cb7696531e32b02296f3..50090dd5707256dd89e1b108ffa1e1caf2ae03a9 100644
--- a/apps/app_meetme.c
+++ b/apps/app_meetme.c
@@ -4856,12 +4856,12 @@ static int action_meetmelist(struct mansession *s, const struct message *m)
 	/* 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,