aboutsummaryrefslogtreecommitdiff
path: root/coreutils/uuencode.c
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2001-07-28 21:34:25 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2001-07-28 21:34:25 +0000
commit4e664ac51d974091097aaa436d72105e3446d90a (patch)
tree6c3cfebad0a657842d4b73cffc7aff75085b032b /coreutils/uuencode.c
parent089decab6543f0570f72e821620aa83165caada3 (diff)
downloadbusybox-4e664ac51d974091097aaa436d72105e3446d90a.tar.gz
The src buffer size has to be a multiple of 3 (as i noted, but didnt do).
Diffstat (limited to 'coreutils/uuencode.c')
-rw-r--r--coreutils/uuencode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/uuencode.c b/coreutils/uuencode.c
index d46fb1588..68d6f19a7 100644
--- a/coreutils/uuencode.c
+++ b/coreutils/uuencode.c
@@ -82,7 +82,7 @@ static void base64_encode (const char *s, const char *store, const int length, c
int uuencode_main(int argc, char **argv)
{
- const int src_buf_size = BUFSIZ; // This *MUST* be a multiple of 3
+ const int src_buf_size = 600; // This *MUST* be a multiple of 3
const int dst_buf_size = 4 * ((src_buf_size + 2) / 3);
RESERVE_BB_BUFFER(src_buf, src_buf_size + 1);
RESERVE_BB_BUFFER(dst_buf, dst_buf_size + 1);