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

Commit 424b093a authored by Jesse Hall's avatar Jesse Hall Committed by Android Git Automerger
Browse files

am ef923fcf: Merge "fix GraphicBuffer::flatten crash issue when handle is null"

* commit 'ef923fcf':
  fix GraphicBuffer::flatten crash issue when handle is null
parents 4314ccd1 ef923fcf
Loading
Loading
Loading
Loading
+4 −2
Original line number Original line Diff line number Diff line
@@ -235,8 +235,10 @@ status_t GraphicBuffer::flatten(void*& buffer, size_t& size, int*& fds, size_t&


    buffer = reinterpret_cast<void*>(static_cast<int*>(buffer) + sizeNeeded);
    buffer = reinterpret_cast<void*>(static_cast<int*>(buffer) + sizeNeeded);
    size -= sizeNeeded;
    size -= sizeNeeded;
    if (handle) {
        fds += handle->numFds;
        fds += handle->numFds;
        count -= handle->numFds;
        count -= handle->numFds;
    }


    return NO_ERROR;
    return NO_ERROR;
}
}