Skip to content

Commit

Permalink
src: remove dead code in base64_encode
Browse files Browse the repository at this point in the history
If mode == Base64Mode::NORMAL, then the function has already returned.

Refs: #39775

PR-URL: #43979
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Feng Yu <F3n67u@outlook.com>
  • Loading branch information
tniessen authored and ruyadorno committed Sep 23, 2022
1 parent e9e856a commit 0c01922
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/base64-inl.h
Expand Up @@ -169,19 +169,13 @@ inline size_t base64_encode(const char* src,
a = src[i + 0] & 0xff;
dst[k + 0] = table[a >> 2];
dst[k + 1] = table[(a & 3) << 4];
if (mode == Base64Mode::NORMAL) {
dst[k + 2] = '=';
dst[k + 3] = '=';
}
break;
case 2:
a = src[i + 0] & 0xff;
b = src[i + 1] & 0xff;
dst[k + 0] = table[a >> 2];
dst[k + 1] = table[((a & 3) << 4) | (b >> 4)];
dst[k + 2] = table[(b & 0x0f) << 2];
if (mode == Base64Mode::NORMAL)
dst[k + 3] = '=';
break;
}

Expand Down

0 comments on commit 0c01922

Please sign in to comment.