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

Commit 1e311eb2 authored by Steven Moreland's avatar Steven Moreland Committed by Automerger Merge Worker
Browse files

Merge "libbinder_ndk: add log to death rec. CHECK" am: 2c2c5d19

Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/1668469

Change-Id: I34c49ad8f238674849b1344321726fd0c195797a
parents ce80479f 2c2c5d19
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -363,7 +363,8 @@ const char* AIBinder_Class_getDescriptor(const AIBinder_Class* clazz) {
}

void AIBinder_DeathRecipient::TransferDeathRecipient::binderDied(const wp<IBinder>& who) {
    CHECK(who == mWho);
    CHECK(who == mWho) << who.unsafe_get() << "(" << who.get_refs() << ") vs " << mWho.unsafe_get()
                       << " (" << mWho.get_refs() << ")";

    mOnDied(mCookie);