summaryrefslogtreecommitdiff
path: root/encoding
diff options
context:
space:
mode:
Diffstat (limited to 'encoding')
-rw-r--r--encoding/apr_base64.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/encoding/apr_base64.c b/encoding/apr_base64.c
index e4fb90b59..b4b28cf75 100644
--- a/encoding/apr_base64.c
+++ b/encoding/apr_base64.c
@@ -191,11 +191,9 @@ APR_DECLARE(int) apr_base64_decode_binary(unsigned char *bufplain,
APR_DECLARE(char *) apr_pbase64_decode(apr_pool_t *p, const char *bufcoded)
{
char *decoded;
- int l;
- decoded = (char *) apr_palloc(p, 1 + apr_base64_decode_len(bufcoded));
- l = apr_base64_decode(decoded, bufcoded);
- decoded[l] = '\0'; /* make binary sequence into string */
+ decoded = (char *) apr_palloc(p, apr_base64_decode_len(bufcoded));
+ apr_base64_decode(decoded, bufcoded);
return decoded;
}
@@ -286,8 +284,7 @@ APR_DECLARE(char *) apr_pbase64_encode(apr_pool_t *p, const char *string)
int l = strlen(string);
encoded = (char *) apr_palloc(p, apr_base64_encode_len(l));
- l = apr_base64_encode(encoded, string, l);
- encoded[l] = '\0'; /* make binary sequence into string */
+ apr_base64_encode(encoded, string, l);
return encoded;
}