Skip to content

Commit 1017a2c

Browse files
committedSep 15, 2021
8273135: java/awt/color/ICC_ColorSpace/MTTransformReplacedProfile.java crashes in liblcms.dylib with NULLSeek+0x7
Reviewed-by: aivanov, azvegint
1 parent 6cf70f5 commit 1017a2c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed
 

‎src/java.desktop/share/native/liblcms/cmsio0.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -1532,7 +1532,7 @@ cmsBool IsTypeSupported(cmsTagDescriptor* TagDescriptor, cmsTagTypeSignature Typ
15321532
void* CMSEXPORT cmsReadTag(cmsHPROFILE hProfile, cmsTagSignature sig)
15331533
{
15341534
_cmsICCPROFILE* Icc = (_cmsICCPROFILE*) hProfile;
1535-
cmsIOHANDLER* io = Icc ->IOhandler;
1535+
cmsIOHANDLER* io;
15361536
cmsTagTypeHandler* TypeHandler;
15371537
cmsTagTypeHandler LocalTypeHandler;
15381538
cmsTagDescriptor* TagDescriptor;
@@ -1573,6 +1573,7 @@ void* CMSEXPORT cmsReadTag(cmsHPROFILE hProfile, cmsTagSignature sig)
15731573

15741574
if (TagSize < 8) goto Error;
15751575

1576+
io = Icc ->IOhandler;
15761577
// Seek to its location
15771578
if (!io -> Seek(io, Offset))
15781579
goto Error;

‎test/jdk/java/awt/color/ICC_ColorSpace/MTTransformReplacedProfile.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
/**
3636
* @test
37-
* @bug 8271718
37+
* @bug 8271718 8273135
3838
* @summary Verifies MT safety of color transformation while profile is changed
3939
*/
4040
public final class MTTransformReplacedProfile {

0 commit comments

Comments
 (0)
Please sign in to comment.