From: Luiz Fernando N. Capitulino Date: Wed, 25 Apr 2007 14:18:41 +0000 (-0300) Subject: init_buffer(): Kill buf pointer X-Git-Tag: v1.5.2-rc1~24 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=3e0a93a5bf9fe10453599a94af8191f421ee3b16;p=git.git init_buffer(): Kill buf pointer We don't need it, it's possible to assign the block of memory to bufp Signed-off-by: Luiz Fernando N. Capitulino Signed-off-by: Junio C Hamano --- diff --git a/builtin-commit-tree.c b/builtin-commit-tree.c index 4a8d8d8b6..ccbcbe30d 100644 --- a/builtin-commit-tree.c +++ b/builtin-commit-tree.c @@ -16,9 +16,8 @@ */ static void init_buffer(char **bufp, unsigned int *sizep) { - char *buf = xmalloc(BLOCKING); + *bufp = xmalloc(BLOCKING); *sizep = 0; - *bufp = buf; } static void add_buffer(char **bufp, unsigned int *sizep, const char *fmt, ...)