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

Commit 21539313 authored by Lajos Molnar's avatar Lajos Molnar Committed by android-build-merger
Browse files

fix build am: cc17d003 am: 6007caa5

am: f3c0ccf2

Change-Id: I7c2da1c3042db8a5c2dccd5370b2b0f852302808
parents 4f71c20b f3c0ccf2
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -194,7 +194,8 @@ bool SoftVPX::outputBufferSafe(OMX_BUFFERHEADERTYPE *outHeader) {
    uint64_t nFilledLen = width;
    nFilledLen *= height;
    if (nFilledLen > UINT32_MAX / 3) {
        ALOGE("b/29421675, nFilledLen overflow %llu w %u h %u", nFilledLen, width, height);
        ALOGE("b/29421675, nFilledLen overflow %llu w %u h %u",
                (unsigned long long)nFilledLen, width, height);
        android_errorWriteLog(0x534e4554, "29421675");
        return false;
    } else if (outHeader->nAllocLen < outHeader->nFilledLen) {