From 39c22863ac568d257ef197dbc31bef45c596e8ca Mon Sep 17 00:00:00 2001 From: Richard Guenther Date: Thu, 20 Jul 2006 11:41:08 +1000 Subject: [PATCH] Fix off-by-one error in rpcgen We obviously need to allocate space for the terminating nul too. --- tools/rpcgen/rpc_cout.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/rpcgen/rpc_cout.c b/tools/rpcgen/rpc_cout.c index 377ba0b..a9d1456 100644 --- a/tools/rpcgen/rpc_cout.c +++ b/tools/rpcgen/rpc_cout.c @@ -692,7 +692,7 @@ upcase(char *str) char *ptr, *hptr; - ptr = (char *) malloc(strlen(str)); + ptr = (char *) malloc(strlen(str)+1); if (ptr == (char *) NULL) { f_print(stderr, "malloc failed \n"); exit(1); -- 2.39.2