summaryrefslogtreecommitdiff
path: root/base64-decode.c
diff options
context:
space:
mode:
Diffstat (limited to 'base64-decode.c')
-rw-r--r--base64-decode.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/base64-decode.c b/base64-decode.c
index 0ead7325..ac3bc385 100644
--- a/base64-decode.c
+++ b/base64-decode.c
@@ -35,12 +35,11 @@
#define TABLE_SPACE -2
#define TABLE_END -3
-/* FIXME: Make sure that all whitespace characters, SPC, HT, VT, FF,
- * CR and LF are ignored. */
static const signed char
decode_table[0x100] =
{
- -1, -1, -1, -1, -1, -1, -1, -1, -1, -2, -2, -1, -1, -2, -1, -1,
+ /* White space is HT, VT, FF, CR, LF and SPC */
+ -1, -1, -1, -1, -1, -1, -1, -1, -1, -2, -2, -2, -2, -2, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-2, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 62, -1, -1, -1, 63,
52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -1, -1, -1, -3, -1, -1,