-
Enhancement
-
Resolution: Won't Fix
-
P4
-
7
-
x86
-
windows_7
A DESCRIPTION OF THE REQUEST :
private int getNextID() {
synchronized(getTracker()) {
return ++mediaTrackerID;
}
}
This method mediaTrackerID not detect overflow.
Possible overflow in the long time run or in a large number of create "imageIcon", when
JUSTIFICATION :
Possible overflow in the long time run or in a large number of create "imageIcon", when
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
Indefinite period of time within the reliable operation of
ACTUAL -
The risk of data overflow
CUSTOMER SUBMITTED WORKAROUND :
Add a detection to prevent data overflow
private int getNextID() {
synchronized(getTracker()) {
return ++mediaTrackerID;
}
}
This method mediaTrackerID not detect overflow.
Possible overflow in the long time run or in a large number of create "imageIcon", when
JUSTIFICATION :
Possible overflow in the long time run or in a large number of create "imageIcon", when
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
Indefinite period of time within the reliable operation of
ACTUAL -
The risk of data overflow
CUSTOMER SUBMITTED WORKAROUND :
Add a detection to prevent data overflow
- links to
-
Review(master) openjdk/jdk/25666