[Bug 394] java.lang.ExceptionInInitializerError on systems with uninitialized clock
bugzilla-daemon at icedtea.classpath.org
bugzilla-daemon at icedtea.classpath.org
Tue Oct 20 04:37:09 PDT 2009
http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=394
------- Comment #1 from xerxes at zafena.se 2009-10-20 11:37 -------
A quick way to reproduce this bug are to set the time to 0x7FFFFFFF and then
let the time overflow.
root at OpenRD:~/test# cat setbogustime.c
#include <stdio.h>
#include <time.h>
int main()
{
time_t t = 0x7fffffff;
stime(&t);
t = time(0);
printf(ctime(&t));
printf("raw time are: %ld = 0x%X\n", (long)t, (long)t);
return 0;
}
root at OpenRD:~/test# ./a.out
Tue Jan 19 03:14:07 2038
raw time are: 2147483647 = 0x7FFFFFFF
root at OpenRD:~/test# date
Fri Dec 13 20:45:55 UTC 1901
root at OpenRD:~/test# java -version
Error occurred during initialization of VM
java.lang.ExceptionInInitializerError
Caused by: java.lang.NullPointerException
at java.lang.System.nullInputStream(System.java:1074)
at java.lang.System.<clinit>(System.java:73)
--
Configure bugmail: http://icedtea.classpath.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
More information about the distro-pkg-dev
mailing list