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

Commit ef923fcf authored by Jesse Hall's avatar Jesse Hall Committed by Gerrit Code Review
Browse files

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

parents 70278fbf e2d11573
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;
}
}