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

Commit 6363bf8b authored by Steven Moreland's avatar Steven Moreland Committed by android-build-merger
Browse files

Merge "libbinder_ndk: AIBinder_isRemote(nullptr) -> false" am: 8a890ad9 am: 25403523

am: bf702968

Change-Id: I34c53f0efd1a6f2db9cf1eab3215b672d6dd373b
parents fed51cf4 bf702968
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -302,7 +302,7 @@ AIBinder* AIBinder_new(const AIBinder_Class* clazz, void* args) {


bool AIBinder_isRemote(const AIBinder* binder) {
bool AIBinder_isRemote(const AIBinder* binder) {
    if (binder == nullptr) {
    if (binder == nullptr) {
        return true;
        return false;
    }
    }


    return binder->isRemote();
    return binder->isRemote();