Hi Gerd

and I can reproduce the problem with them. So I think the crash is not
related to I/O errors. It happens in the Java Integer class:
   public static Integer valueOf(int i) {
        if (i >= IntegerCache.low && i <= IntegerCache.high)
*            return IntegerCache.cache[i + (-IntegerCache.low)];*
        return new Integer(i);
    }


I found two bugs with the same "impossible" exception in Integer.valueOf()

https://netbeans.org/bugzilla/show_bug.cgi?id=267380

https://netbeans.org/bugzilla/show_bug.cgi?id=268301

Both are recent with java version 1.8.0_102-8u102.
That was released in mid July which roughly fits with
Carlos's observation of when it started happening.

..Steve
_______________________________________________
mkgmap-dev mailing list
[email protected]
http://www.mkgmap.org.uk/mailman/listinfo/mkgmap-dev

Reply via email to