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

Commit 795726df authored by Santiago Seifert's avatar Santiago Seifert Committed by Automerger Merge Worker
Browse files

Avoid read out of bounds am: 9d33304e am: e2a8a1e3 am: 726b9eb5 am:...

parents a74e1bbe ba1dcc15
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4771,7 +4771,7 @@ status_t MPEG4Extractor::updateAudioTrackInfoFromESDS_MPEG4Audio(
        if (len2 == 0) {
            return ERROR_MALFORMED;
        }
        if (offset >= csd_size || csd[offset] != 0x01) {
        if (offset + len1 > csd_size || csd[offset] != 0x01) {
            return ERROR_MALFORMED;
        }