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

Commit 1b751203 authored by Jesse Hall's avatar Jesse Hall Committed by Android Git Automerger
Browse files

am 50ef8562: Merge "GraphicProducerWrapper may return false transact status"

* commit '50ef8562':
  GraphicProducerWrapper may return false transact status
parents d9ee7dee 50ef8562
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2641,7 +2641,7 @@ class GraphicProducerWrapper : public BBinder, public MessageHandler {
            looper->sendMessage(this, Message(MSG_API_CALL));
            barrier.wait();
        }
        return NO_ERROR;
        return result;
    }

    /*
@@ -2651,7 +2651,7 @@ class GraphicProducerWrapper : public BBinder, public MessageHandler {
    virtual void handleMessage(const Message& message) {
        android_atomic_release_load(&memoryBarrier);
        if (message.what == MSG_API_CALL) {
            impl->asBinder()->transact(code, data[0], reply);
            result = impl->asBinder()->transact(code, data[0], reply);
            barrier.open();
        } else if (message.what == MSG_EXIT) {
            exitRequested = true;