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

Commit 762c8287 authored by Alan Viverette's avatar Alan Viverette Committed by android-build-merger
Browse files

Avoid potential re-entry as a result of child mutation am: b46ba3b2

am: 0d98515c

Change-Id: I521833b5d599d735be786b6fb6a1b9fa7f2f2533
parents f770023b 0d98515c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -851,8 +851,8 @@ public class DrawableContainer extends Drawable implements Drawable.Callback {

        private Drawable prepareDrawable(Drawable child) {
            child.setLayoutDirection(mLayoutDirection);
            child.setCallback(mOwner);
            child = child.mutate();
            child.setCallback(mOwner);
            return child;
        }