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

Commit c4b8e378 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Fix && used in place of &"

parents 7931cbd1 797411c8
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -3501,7 +3501,7 @@ status_t MPEG4Extractor::parseEAC3SpecificBox(off64_t offset) {
        }
        }
        unsigned mask = br.getBits(8);
        unsigned mask = br.getBits(8);
        for (unsigned i = 0; i < 8; i++) {
        for (unsigned i = 0; i < 8; i++) {
            if (((0x1 << i) && mask) == 0)
            if (((0x1 << i) & mask) == 0)
                continue;
                continue;


            if (br.numBitsLeft() < 8) {
            if (br.numBitsLeft() < 8) {