aboutsummaryrefslogtreecommitdiff
path: root/toys
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2013-03-22 00:26:12 -0500
committerRob Landley <rob@landley.net>2013-03-22 00:26:12 -0500
commit64427a889b424c55e6917e5110e66ba004610fa9 (patch)
treec3ff3f4d1e0c9fbea6b3b545d893c0ee5550691f /toys
parent5cb3e2683bd8ca23bf8c38e13f3e0d68a642d586 (diff)
downloadtoybox-64427a889b424c55e6917e5110e66ba004610fa9.tar.gz
uuencode/decode tests and tweaks from Erich Plondke.
Diffstat (limited to 'toys')
-rw-r--r--toys/pending/uudecode.c1
-rw-r--r--toys/pending/uuencode.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/toys/pending/uudecode.c b/toys/pending/uudecode.c
index 71774ea2..41d9acf3 100644
--- a/toys/pending/uudecode.c
+++ b/toys/pending/uudecode.c
@@ -171,4 +171,5 @@ void uudecode_main(void)
ofd = xcreate(out_filename,O_WRONLY|O_CREAT|O_TRUNC,mode);
free(line);
decoder(ifd,ofd);
+ if (TOYBOX_CLEANUP) close(ofd);
}
diff --git a/toys/pending/uuencode.c b/toys/pending/uuencode.c
index d6cc5ad2..277cefac 100644
--- a/toys/pending/uuencode.c
+++ b/toys/pending/uuencode.c
@@ -57,7 +57,7 @@ static void uuencode_b64(int fd, const char *name)
xprintf("begin-base64 744 %s\n",name);
do {
len = xread(fd,inbuf,48);
- uuencode_b64_line(outbuf,inbuf,len);
+ if (len > 0) uuencode_b64_line(outbuf,inbuf,len);
} while (len > 0);
xprintf("====\n");
}