diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2018-04-14 21:39:58 +0200 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2018-04-14 21:39:58 +0200 |
commit | 9deaf399553050b3b426e8a39d0ffd22430bf72d (patch) | |
tree | 9bf7de273c7a2936ff07a0da67b1cbec2aab72a5 /fetchmail.h | |
parent | 3a36394465a4e6e3c64bb5b1255717df753bb4a9 (diff) | |
download | fetchmail-9deaf399553050b3b426e8a39d0ffd22430bf72d.tar.gz fetchmail-9deaf399553050b3b426e8a39d0ffd22430bf72d.tar.bz2 fetchmail-9deaf399553050b3b426e8a39d0ffd22430bf72d.zip |
In-depth fix for to64frombits() BASE64 encoder buffer sizing.
Diffstat (limited to 'fetchmail.h')
-rw-r--r-- | fetchmail.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fetchmail.h b/fetchmail.h index 98f07742..d2939c64 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -640,8 +640,8 @@ int prc_parse_file(const char *, const flag); int prc_filecheck(const char *, const flag); /* base64.c */ -void to64frombits(char *, const void *, int); -int from64tobits(void *, const char *, int maxlen); +int to64frombits(char *, const void *, int inlen, size_t outlen); +int from64tobits(void *, const char *, int mxoutlen); /* unmime.c */ /* Bit-mask returned by MimeBodyType */ |