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

Commit ec9f664d authored by Android Build Merger (Role)'s avatar Android Build Merger (Role)
Browse files

[automerger] Fix overflow/dos in 3gg text description parsing am: 851e22d1...

[automerger] Fix overflow/dos in 3gg text description parsing am: 851e22d1 am: efeff077 am: 93e7dd1e am: 0d6a0e7d

Change-Id: I27ce9e2b1bb78b7f716ac593cb98a4de9d77f5c3
parents 56b85751 0d6a0e7d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -383,7 +383,7 @@ status_t TextDescriptions::extract3GPPGlobalDescriptions(
        tmpData += 8;
        size_t remaining = size - 8;

        if (size < chunkSize) {
        if (chunkSize <= 8 || size < chunkSize) {
            return OK;
        }
        switch(chunkType) {