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

Commit 3668be62 authored by Steven Moreland's avatar Steven Moreland
Browse files

binder: make setRequestingSid(false) work

Before, sid could never be turned from being requested to being
unrequested, but no one called the API.

Test: boot, check SafetyNet logs
Change-Id: I0a6df49fcca8f3f0f54d270f6877a13c90c82ff2
parent 13fb8861
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -218,7 +218,7 @@ void BBinder::setRequestingSid(bool requestingSid)
        if (!e) return; // out of memory
    }

    e->mRequestingSid = true;
    e->mRequestingSid = requestingSid;
}

BBinder::~BBinder()