This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: [3.3] classloader failure
- From: Jeff Sturm <jsturm at one-point dot com>
- To: Mark Wielaard <mark at klomp dot org>
- Cc: java at gcc dot gnu dot org
- Date: Mon, 17 Mar 2003 16:58:19 -0500 (EST)
- Subject: Re: [3.3] classloader failure
On 17 Mar 2003, Mark Wielaard wrote:
> Could you check that if you repackage the jar/zip files without the
> extended time stamp the failure goes away.
Well, strace says the last file opened before crashing was:
open("/opt/oracle/jdbc/lib/classes12.zip", O_RDONLY) = 18
which is an interesting clue. Chances are this archive was created
with /usr/bin/zip and not jar.
I didn't try to rebuild classes12.zip with jar.
> Or could you comment out the
> setTime() call in ZipEntry.setExtra(byte[]) to check that that works.
It does, thanks.
Jeff