-
Bug
-
Resolution: Fixed
-
P2
-
1.4.0, 1.4.2, 5.0
-
b83
-
generic, x86
-
generic, linux, windows_xp
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2205022 | 5.0u31 | David Buck | P3 | Resolved | Fixed | b02 |
JDK-2205021 | 1.4.2_33 | David Buck | P3 | Closed | Fixed | b02 |
libraries and the Image I/O API) such as readImageHeader(), readImage(),
writeImageHeader(), and writeImage() make JNI calls in the scope of
Get/ReleasePrimitiveArrayCritical. Most Java upcalls in the file have been
correctly surrounded with RELEASE/GET_ARRAYS macros, but a few cases fell
through the cracks.
Running any application that reads or writes JPEG images with the non-standard
-Xcheck:jni flag causes the following error (or something similar):
FATAL ERROR in native method: Calling other JNI functions in the scope of Get/ReleasePrimitiveArrayCritical or Get/ReleaseStringCritical
at com.sun.imageio.plugins.jpeg.JPEGImageReader.readImageHeader(Native Method)
at com.sun.imageio.plugins.jpeg.JPEGImageReader.readNativeHeader(JPEGImageReader.java:545)
at com.sun.imageio.plugins.jpeg.JPEGImageReader.checkTablesOnly(JPEGImageReader.java:300)
at com.sun.imageio.plugins.jpeg.JPEGImageReader.gotoImage(JPEGImageReader.java:422)
at com.sun.imageio.plugins.jpeg.JPEGImageReader.readHeader(JPEGImageReader.java:538)
at com.sun.imageio.plugins.jpeg.JPEGImageReader.readInternal(JPEGImageReader.java:871)
at com.sun.imageio.plugins.jpeg.JPEGImageReader.read(JPEGImageReader.java:855)
at javax.imageio.ImageIO.read(ImageIO.java:1317)
at javax.imageio.ImageIO.read(ImageIO.java:1241)
at Test.<init>(Test.java:29)
at Test.main(Test.java:40)
These problem areas are unlikely to cause problems, but we should try to
conform to the JNI specs, which mandate that no JNI upcalls be made inside
of a critical section.
###@###.### 2001-11-16
- backported by
-
JDK-2205022 Native JPEG code makes JNI calls in scope of GetPrimitiveArrayCritical
-
- Resolved
-
-
JDK-2205021 Native JPEG code makes JNI calls in scope of GetPrimitiveArrayCritical
-
- Closed
-
- duplicates
-
JDK-7011615 JRockit JDK Simplification - Backport fix for sun bug 4528643 (in imageioJPEG.c) to 1.4.2 and 1.5.0
-
- Closed
-
-
JDK-4737496 JPEGImageWriter causes FatalError(1.4) & warning msgs(1.4.1-rc) with -Xcheck:jni
-
- Closed
-
-
JDK-6339169 ImageReader.read() triggers JNI warning messages
-
- Closed
-
- relates to
-
JDK-4518124 native font code makes JNI method invocation in scope of GetStringCritical
-
- Resolved
-