Skip to content

Commit e775acf

Browse files
author
Andrey Turbanov
committedOct 11, 2022
8293986: Incorrect double-checked locking in com.sun.beans.introspect.ClassInfo
Reviewed-by: serb
1 parent 9d116ec commit e775acf

File tree

1 file changed

+25
-16
lines changed

1 file changed

+25
-16
lines changed
 

‎src/java.desktop/share/classes/com/sun/beans/introspect/ClassInfo.java

+25-16
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2014, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2014, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -65,44 +65,53 @@ public static void remove(Class<?> clz) {
6565

6666
private final Object mutex = new Object();
6767
private final Class<?> type;
68-
private List<Method> methods;
69-
private Map<String,PropertyInfo> properties;
70-
private Map<String,EventSetInfo> eventSets;
68+
private volatile List<Method> methods;
69+
private volatile Map<String,PropertyInfo> properties;
70+
private volatile Map<String,EventSetInfo> eventSets;
7171

7272
private ClassInfo(Class<?> type) {
7373
this.type = type;
7474
}
7575

7676
public List<Method> getMethods() {
77-
if (this.methods == null) {
77+
List<Method> methods = this.methods;
78+
if (methods == null) {
7879
synchronized (this.mutex) {
79-
if (this.methods == null) {
80-
this.methods = MethodInfo.get(this.type);
80+
methods = this.methods;
81+
if (methods == null) {
82+
methods = MethodInfo.get(this.type);
83+
this.methods = methods;
8184
}
8285
}
8386
}
84-
return this.methods;
87+
return methods;
8588
}
8689

8790
public Map<String,PropertyInfo> getProperties() {
88-
if (this.properties == null) {
91+
Map<String, PropertyInfo> properties = this.properties;
92+
if (properties == null) {
8993
synchronized (this.mutex) {
90-
if (this.properties == null) {
91-
this.properties = PropertyInfo.get(this.type);
94+
properties = this.properties;
95+
if (properties == null) {
96+
properties = PropertyInfo.get(this.type);
97+
this.properties = properties;
9298
}
9399
}
94100
}
95-
return this.properties;
101+
return properties;
96102
}
97103

98104
public Map<String,EventSetInfo> getEventSets() {
99-
if (this.eventSets == null) {
105+
Map<String, EventSetInfo> eventSets = this.eventSets;
106+
if (eventSets == null) {
100107
synchronized (this.mutex) {
101-
if (this.eventSets == null) {
102-
this.eventSets = EventSetInfo.get(this.type);
108+
eventSets = this.eventSets;
109+
if (eventSets == null) {
110+
eventSets = EventSetInfo.get(this.type);
111+
this.eventSets = eventSets;
103112
}
104113
}
105114
}
106-
return this.eventSets;
115+
return eventSets;
107116
}
108117
}

0 commit comments

Comments
 (0)
Please sign in to comment.