-
Bug
-
Resolution: Duplicate
-
P4
-
8
-
None
-
generic
-
generic
private int getSrcCSType(ColorModel cm) {
...
switch (cs.getType()) {
...
case ColorSpace.TYPE_3CLR:
if (cs == JPEG.JCS.getYCC()) {
...
}
case ColorSpace.TYPE_CMYK:
retval = JPEG.JCS_CMYK;
break;
...
YCC* images types are overwritten when one case falls through to the next.
...
switch (cs.getType()) {
...
case ColorSpace.TYPE_3CLR:
if (cs == JPEG.JCS.getYCC()) {
...
}
case ColorSpace.TYPE_CMYK:
retval = JPEG.JCS_CMYK;
break;
...
YCC* images types are overwritten when one case falls through to the next.
- duplicates
-
JDK-6590255 missing breaks in switch statements in com.sun.imageio.plugins.jpeg.JPEGImageWriter
-
- Closed
-