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

Commit 545a3471 authored by John Reck's avatar John Reck
Browse files

Fix NPE in RNA#start()

Change-Id: I073e3574cbb7d3195727ef8cde87fc12904c9566
Fixes: 73176211
Test: I guessed
parent 98eafdb1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -158,7 +158,7 @@ public class RenderNodeAnimator extends Animator {
    }

    private void applyInterpolator() {
        if (mInterpolator == null) return;
        if (mInterpolator == null || mNativePtr == null) return;

        long ni;
        if (isNativeInterpolator(mInterpolator)) {