[OpenJDK 2D-Dev] Integrated: 8260695: The java.awt.color.ICC_Profile#getData/getData(int) are not thread safe

Sergey Bylokhov serb at openjdk.java.net
Mon Feb 22 22:39:44 UTC 2021


On Mon, 1 Feb 2021 09:00:18 GMT, Sergey Bylokhov <serb at openjdk.org> wrote:

> Both methods are implemented in a similar way.
>  1. Requests the size of the profile/tag data
>  2. Creates an array of the correct size
>  3. Requests the data and copy it to the array
> 
> If the data will be changed concurrently between steps 2. and 3. then we will get a mismatch between the array and copied data. 
> 
> In the fix, all steps above are merged to just one step - return the data when requested.

This pull request has now been integrated.

Changeset: a7e2e80f
Author:    Sergey Bylokhov <serb at openjdk.org>
URL:       https://git.openjdk.java.net/jdk/commit/a7e2e80f
Stats:     294 lines in 7 files changed: 138 ins; 110 del; 46 mod

8260695: The java.awt.color.ICC_Profile#getData/getData(int) are not thread safe

Reviewed-by: azvegint, aivanov

-------------

PR: https://git.openjdk.java.net/jdk/pull/2330


More information about the 2d-dev mailing list