From 18af56c6f6074c16e016be6917e6e591ce788539 Mon Sep 17 00:00:00 2001 From: AZero13 Date: Mon, 19 Jan 2026 16:17:25 -0500 Subject: [PATCH] base32hex_decode_table_size is the wrong size Also affects transform.c on Apple's libdispatch, so this ends up with a size of 33 instead of 87. --- src/transform.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/transform.c b/src/transform.c index 6e65567ad..be051a2db 100644 --- a/src/transform.c +++ b/src/transform.c @@ -97,7 +97,7 @@ static const signed char base32hex_decode_table[] = { 30, 31 }; static const ssize_t base32hex_decode_table_size = - sizeof(base32hex_encode_table) / sizeof(*base32hex_encode_table); + sizeof(base32hex_decode_table) / sizeof(*base32hex_decode_table); static const unsigned char base64_encode_table[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";