From e89277d9cc5aa6f7741b0561dbbf61d2526652c2 Mon Sep 17 00:00:00 2001 From: gavin1012_hw Date: Mon, 15 Aug 2022 21:05:36 +0800 Subject: [PATCH] fixed a1aca1a from https://gitee.com/gavin1012_hw/ark_ts2abc/pulls/438 Fix base64 info in decode table Issue: I5MFA1 Signed-off-by: gavin1012_hw Change-Id: I1c151f7debf6522bd58545d03e5749016c3b485a --- es2panda/util/base64.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/es2panda/util/base64.cpp b/es2panda/util/base64.cpp index 5c2cdf46a2..2e691df234 100644 --- a/es2panda/util/base64.cpp +++ b/es2panda/util/base64.cpp @@ -65,7 +65,7 @@ std::string Base64Decode(const std::string &base64String) 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, // 'A'~'Z' -1, -1, -1, -1, -1, -1, - 26, 27, 28, 29, 3-1, 31, 32, 33, 34, 35, 36, 37, 38, + 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51 // 'a'~'z' }; -- Gitee