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

Commit 797411c8 authored by Yi Kong's avatar Yi Kong
Browse files

Fix && used in place of &

Found by Clang int-in-bool-context warning.

Test: presubmit
Bug: 148287349
Change-Id: I63606620640dc7eddc2c14fd86f689c873c8bdcb
parent 7931cbd1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3501,7 +3501,7 @@ status_t MPEG4Extractor::parseEAC3SpecificBox(off64_t offset) {
        }
        unsigned mask = br.getBits(8);
        for (unsigned i = 0; i < 8; i++) {
            if (((0x1 << i) && mask) == 0)
            if (((0x1 << i) & mask) == 0)
                continue;

            if (br.numBitsLeft() < 8) {