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

Commit 735470d2 authored by Jean-Baptiste Queru's avatar Jean-Baptiste Queru Committed by Android Git Automerger
Browse files

am 23cad6eb: Merge "stagefright aacenc: Fix reading out of bounds in pow2_xy"

* commit '23cad6eb':
  stagefright aacenc: Fix reading out of bounds in pow2_xy
parents 541803cc 23cad6eb
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -344,8 +344,8 @@ static const Word32 pow2Table[POW2_TABLE_SIZE] = {
*/
Word32 pow2_xy(Word32 x, Word32 y)
{
  Word32 iPart;
  Word32 fPart;
  UWord32 iPart;
  UWord32 fPart;
  Word32 res;
  Word32 tmp, tmp2;
  Word32 shift, shift2;