From 64ae9117d81e6a0e9da72d3464a44f2592137b52 Mon Sep 17 00:00:00 2001 From: jmallett Date: Sat, 20 Apr 2002 02:33:30 +0000 Subject: base64_decode() was feeding \r and \n to the decoding function, and that was causing output to be corrupted. Pointed out by: obrien MFC after: 3 days --- usr.bin/uudecode/uudecode.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'usr.bin/uudecode/uudecode.c') diff --git a/usr.bin/uudecode/uudecode.c b/usr.bin/uudecode/uudecode.c index 7d812dd..4f54aaa 100644 --- a/usr.bin/uudecode/uudecode.c +++ b/usr.bin/uudecode/uudecode.c @@ -342,6 +342,10 @@ base64_decode(stream) unsigned char out[MAXPATHLEN * 4]; int rv; + if (index(stream, '\r') != NULL) + *index(stream, '\r') = '\0'; + if (index(stream, '\n') != NULL) + *index(stream, '\n') = '\0'; rv = b64_pton(stream, out, (sizeof(out) / sizeof(out[0]))); if (rv == -1) errx(1, "b64_pton: error decoding base64 input stream"); -- cgit v1.1