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

Commit 67b97497 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Fix ERROR_MALFORMED return in bool method, BetterSniffMPEG4"

parents fe4ab105 1f133f69
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -5335,7 +5335,7 @@ static bool BetterSniffMPEG4(
        off64_t chunkDataSize = chunkSize - (chunkDataOffset - offset);
        if (chunkDataSize < 0) {
            ALOGE("b/23540914");
            return ERROR_MALFORMED;
            return false;
        }

        char chunkstring[5];