summaryrefslogtreecommitdiff
path: root/base64-decode.c
diff options
context:
space:
mode:
Diffstat (limited to 'base64-decode.c')
-rw-r--r--base64-decode.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/base64-decode.c b/base64-decode.c
index c7c739af..2c1ec7df 100644
--- a/base64-decode.c
+++ b/base64-decode.c
@@ -122,8 +122,6 @@ base64_decode_update(struct base64_decode_ctx *ctx,
size_t done;
size_t i;
- assert(*dst_length >= BASE64_DECODE_LENGTH(src_length));
-
for (i = 0, done = 0; i<src_length; i++)
switch(base64_decode_single(ctx, dst + done, src[i]))
{