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

Commit 4fe18f31 authored by zhangkuili's avatar zhangkuili Committed by android-build-merger
Browse files

Merge "[Stability][hwui] check mmap return value" am: b352dcd1

am: 399ac24b

Change-Id: I4075c1d652eb645e2f7ab05ecdb66fda4636423e
parents 2272f087 399ac24b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -127,7 +127,7 @@ bool GraphicsStatsService::parseFromFile(const std::string& path,
        return false;
    }
    void* addr = mmap(nullptr, sb.st_size, PROT_READ, MAP_SHARED, fd, 0);
    if (!addr) {
    if (addr == MAP_FAILED) {
        int err = errno;
        // The file not existing is normal for addToDump(), so only log if
        // we get an unexpected error