Skip to content
This repository was archived by the owner on Apr 17, 2026. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion compact_enc_det/compact_enc_det.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2469,7 +2469,7 @@ bool GoodUnicodeFromBase64(const uint8* start, const uint8* limit) {
++lower_count;
} else if (('A' <= c) && (c <= 'Z')) {
++upper_count;
} else if (('0' <= c) && (c <= '0')) {
} else if (('0' <= c) && (c <= '9')) {
++digit_count;
} else if (*src == '+') {
++plus_count;
Expand Down