2007-07-11  Roland McGrath  <roland@redhat.com>

	* util.c (printstr): Fix size calculation for outstr allocation.
diff --git a/util.c b/util.c
index 1ca400f..55f8070 100644
--- a/util.c
+++ b/util.c
@@ -449,13 +449,14 @@
 	}
 	if (!str) {
 		if ((str = malloc(max_strlen)) == NULL
-		    || (outstr = malloc(2*max_strlen)) == NULL) {
+		    || (outstr = malloc(4*max_strlen
+					+ sizeof "\"\"...")) == NULL) {
 			fprintf(stderr, "out of memory\n");
 			tprintf("%#lx", addr);
 			return;
 		}
 	}
-	outend = outstr + max_strlen * 2 - 10;
+	outend = outstr + max_strlen * 4;
 	if (len < 0) {
 		n = max_strlen;
 		if (umovestr(tcp, addr, n, (char *) str) < 0) {