Deleted Added
full compact
0a1
> /* $OpenBSD: uuencode.c,v 1.24 2006/08/03 03:34:42 deraadt Exp $ */
26d26
< RCSID("$OpenBSD: uuencode.c,v 1.17 2003/11/10 16:23:41 jakob Exp $");
27a28,32
> #include <sys/types.h>
> #include <netinet/in.h>
> #include <resolv.h>
> #include <stdio.h>
>
61c66
< char *buf = xmalloc(2*len);
---
> char *buf;
63a69,73
> if (len > 65536) {
> fprintf(fp, "dump_base64: len > 65536\n");
> return;
> }
> buf = xmalloc(2*len);