From 6e786e9ea47966a9cac7cfef4a4079ac379580b0 Mon Sep 17 00:00:00 2001 From: "Arnold D. Robbins" Date: Sun, 14 Dec 2014 21:29:24 +0200 Subject: Fix to previous change. Now passes valgrind. --- profile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'profile.c') diff --git a/profile.c b/profile.c index 45eb562c..886f2b0c 100644 --- a/profile.c +++ b/profile.c @@ -1505,7 +1505,7 @@ pp_concat(int nargs) len = -delimlen; for (i = nargs; i >= 1; i--) { r = pp_args[i] = pp_pop(); - len += r->pp_len + delimlen + 1; + len += r->pp_len + delimlen + 2; } emalloc(str, char *, len + 1, "pp_concat"); -- cgit v1.2.3