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

Commit 5afe5288 authored by Christopher Tate's avatar Christopher Tate Committed by Android Git Automerger
Browse files

am 4d0b9aba: Merge "Fix clearApplicationUserData() to allow a null observer" into klp-dev

* commit '4d0b9aba':
  Fix clearApplicationUserData() to allow a null observer
parents 3327dfd4 4d0b9aba
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3377,7 +3377,7 @@ class ActivityManagerProxy implements IActivityManager
        Parcel reply = Parcel.obtain();
        data.writeInterfaceToken(IActivityManager.descriptor);
        data.writeString(packageName);
        data.writeStrongBinder(observer.asBinder());
        data.writeStrongBinder((observer != null) ? observer.asBinder() : null);
        data.writeInt(userId);
        mRemote.transact(CLEAR_APP_DATA_TRANSACTION, data, reply, 0);
        reply.readException();