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

Commit 5b555deb authored by Lajos Molnar's avatar Lajos Molnar Committed by android-build-merger
Browse files

[automerger] Merge changes from topic...

[automerger] Merge changes from topic "am-b89fd127-e87f-4013-8a91-d8bfa01a2650" into cw-f-dev am: 24125176 am: a797cdf2
am: 80711887

Change-Id: Ibe1822fe1c0f9a800feed07e4bc99f9efd6dbfac
parents b0926c2d 80711887
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -78,8 +78,7 @@ sp<ABuffer> decodeBase64(const AString &s) {
        accum = (accum << 6) | value;

        if (((i + 1) % 4) == 0) {
            out[j++] = (accum >> 16);

            if (j < outLen) { out[j++] = (accum >> 16); }
            if (j < outLen) { out[j++] = (accum >> 8) & 0xff; }
            if (j < outLen) { out[j++] = accum & 0xff; }