Merge "Fix thread-shared field evades lock acquisition reported by Coverity" am: 66fc99d578
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1646974 Change-Id: Ie2fe000d93f3edd0e3c8ac0d049850d7c9510c01
This commit is contained in:
@@ -1196,13 +1196,11 @@ public class Typeface {
|
|||||||
|
|
||||||
/** @hide */
|
/** @hide */
|
||||||
public boolean isSupportedAxes(int axis) {
|
public boolean isSupportedAxes(int axis) {
|
||||||
if (mSupportedAxes == null) {
|
synchronized (this) {
|
||||||
synchronized (this) {
|
if (mSupportedAxes == null) {
|
||||||
|
mSupportedAxes = nativeGetSupportedAxes(native_instance);
|
||||||
if (mSupportedAxes == null) {
|
if (mSupportedAxes == null) {
|
||||||
mSupportedAxes = nativeGetSupportedAxes(native_instance);
|
mSupportedAxes = EMPTY_AXES;
|
||||||
if (mSupportedAxes == null) {
|
|
||||||
mSupportedAxes = EMPTY_AXES;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user