Index: apps/app_meetme.c =================================================================== --- apps/app_meetme.c (revision 56340) +++ apps/app_meetme.c (working copy) @@ -881,6 +881,10 @@ } /* Show all the users */ AST_LIST_TRAVERSE(&cnf->userlist, user, list) { + if ( !user ) { + ast_log(LOG_NOTICE, "HEY I JUST PREVENT A CRASH\n"); + return RESULT_SUCCESS; + } now = time(NULL); hr = (now - user->jointime) / 3600; min = ((now - user->jointime) % 3600) / 60;