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

Unverified Commit ca832d4d authored by Kevin F. Haggerty's avatar Kevin F. Haggerty
Browse files

Merge tag 'android-security-11.0.0_r59' into staging/lineage-18.1_merge_android-security-11.0.0_r59

Android security 11.0.0 release 59

* tag 'android-security-11.0.0_r59':
  Fix Out of Bounds read in TextDescriptions.cpp

Change-Id: Iff19c62c45cfb25afa15654fbf6be3407dc15896
parents f90a7fa8 eb3505a1
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -466,6 +466,10 @@ status_t TextDescriptions::extract3GPPGlobalDescriptions(

                if (subChunkType == FOURCC('f', 't', 'a', 'b'))
                {
                    if(subChunkSize < 8) {
                        return OK;
                    }

                    tmpData += 8;
                    size_t subChunkRemaining = subChunkSize - 8;