Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 165995be authored by Jordan Demeulenaere's avatar Jordan Demeulenaere
Browse files

Fix NPE in GradientDrawable#getCornerRadii.

Bug: 183603359
Test: atest GradientDrawableTest
Change-Id: Ia81adff60e3e9831f0119826636e75f57420932f
parent 07f35830
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -276,7 +276,11 @@ public class GradientDrawable extends Drawable {
     */
    @Nullable
    public float[] getCornerRadii() {
        return mGradientState.mRadiusArray.clone();
        float[] radii = mGradientState.mRadiusArray;
        if (radii == null) {
            return null;
        }
        return radii.clone();
    }

    /**