------- Comment #13 from pinskia at gcc dot gnu dot org 2007-01-23 08:23 ------- The temp zip file was being stayed opened even though it was empty. This caused us to open too many files.
Anyways, I have a fix now: Index: ../../gcc/java/jcf-io.c =================================================================== --- ../../gcc/java/jcf-io.c (revision 121050) +++ ../../gcc/java/jcf-io.c (working copy) @@ -134,10 +135,10 @@ { jcf_dependency_add_file (zipfile, is_system); if (read (fd, magic, 4) != 4 || GET_u4 (magic) != (JCF_u4)ZIPMAGIC) - return NULL; + { close (fd); return NULL; } lseek (fd, 0L, SEEK_SET); if (read_zip_archive (zipf) != 0) - return NULL; + { close (fd); return NULL; } } SeenZipFiles = zipf; -- pinskia at gcc dot gnu dot org changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|unassigned at gcc dot gnu |pinskia at gcc dot gnu dot |dot org |org Status|UNCONFIRMED |ASSIGNED Ever Confirmed|0 |1 Last reconfirmed|0000-00-00 00:00:00 |2007-01-23 08:23:48 date| | http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30454