https://issues.apache.org/bugzilla/show_bug.cgi?id=49987
Summary: Data race in ApplicationContext
Product: Tomcat 6
Version: 6.0.29
Platform: PC
Status: NEW
Severity: normal
Priority: P2
Component: Catalina
AssignedTo: [email protected]
ReportedBy: [email protected]
r998053
http://svn.apache.org/repos/asf/tomcat/tc6.0.x/trunk/java/org/apache/catalina/core/ApplicationContext.java
Data race on variable
private Map parameters
In method
private void mergeParameters() {
if (parameters != null) // concurrent read : 881
return;
Map results = new ConcurrentHashMap();
...
parameters = results; // concurrent write : 897
}
--
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]