PR java/14104
Backport from mainline
2004-03-31 Andrew Haley <aph@redhat.com>
* jcf-io.c (opendir_in_zip): Tidy up error handling.
From-SVN: r92096
+2004-12-13 Roger Sayle <roger@eyesopen.com>
+
+ PR java/14104
+ Backport from mainline
+ 2004-03-31 Andrew Haley <aph@redhat.com>
+ * jcf-io.c (opendir_in_zip): Tidy up error handling.
+
2004-12-07 Tom Tromey <tromey@redhat.com>
PR java/14853:
zipf->next = SeenZipFiles;
zipf->name = (char*)(zipf+1);
strcpy (zipf->name, zipfile);
- SeenZipFiles = zipf;
fd = open (zipfile, O_RDONLY | O_BINARY);
zipf->fd = fd;
if (fd < 0)
if (read_zip_archive (zipf) != 0)
return NULL;
}
+
+ SeenZipFiles = zipf;
return zipf;
}