Index: apps/app_meetme.c =================================================================== --- apps/app_meetme.c (revision 90148) +++ apps/app_meetme.c (working copy) @@ -1451,6 +1451,8 @@ /* Take the conference room number out of an inuse state */ if ((sscanf(conf->confno, "%d", &confno_int) == 1) && (confno_int >= 0 && confno_int < 1024)) conf_map[confno_int] = 0; + if (conf->fd >= 0) + close(conf->fd); conf_free(conf); res = 1; }