git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/4] Fix allocation of "int*" instead of "int".
@ 2007-07-31 12:48 Christian Couder
  2007-07-31 19:56 ` Jeff King
  0 siblings, 1 reply; 3+ messages in thread
From: Christian Couder @ 2007-07-31 12:48 UTC (permalink / raw)
  To: Junio Hamano; +Cc: git

Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
---

 While working on something like a "git bisect dunno", I came up with
 the patches in this series.

 Thanks in advance,
 Christian.

 builtin-rev-list.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/builtin-rev-list.c b/builtin-rev-list.c
index 8efd609..5bcafe4 100644
--- a/builtin-rev-list.c
+++ b/builtin-rev-list.c
@@ -300,7 +300,7 @@ static struct commit_list *find_bisection(struct commit_list *list,
 	show_list("bisection 2 sorted", 0, nr, list);
 
 	*all = nr;
-	weights = xcalloc(on_list, sizeof(int*));
+	weights = xcalloc(on_list, sizeof(int));
 	counted = 0;
 
 	for (n = 0, p = list; p; p = p->next) {
-- 
1.5.2.1.144.gabc40

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH 1/4] Fix allocation of "int*" instead of "int".
  2007-07-31 12:48 [PATCH 1/4] Fix allocation of "int*" instead of "int" Christian Couder
@ 2007-07-31 19:56 ` Jeff King
  2007-08-01  4:11   ` Christian Couder
  0 siblings, 1 reply; 3+ messages in thread
From: Jeff King @ 2007-07-31 19:56 UTC (permalink / raw)
  To: Christian Couder; +Cc: Junio Hamano, git

On Tue, Jul 31, 2007 at 02:48:29PM +0200, Christian Couder wrote:

> -	weights = xcalloc(on_list, sizeof(int*));
> +	weights = xcalloc(on_list, sizeof(int));

How about the correct-by-definition sizeof(*weights)?

-Peff

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH 1/4] Fix allocation of "int*" instead of "int".
  2007-07-31 19:56 ` Jeff King
@ 2007-08-01  4:11   ` Christian Couder
  0 siblings, 0 replies; 3+ messages in thread
From: Christian Couder @ 2007-08-01  4:11 UTC (permalink / raw)
  To: Jeff King; +Cc: Junio Hamano, git

Le mardi 31 juillet 2007 21:56, Jeff King a écrit :
> On Tue, Jul 31, 2007 at 02:48:29PM +0200, Christian Couder wrote:
> > -	weights = xcalloc(on_list, sizeof(int*));
> > +	weights = xcalloc(on_list, sizeof(int));
>
> How about the correct-by-definition sizeof(*weights)?

That's ok for me too.

Thanks,
Christian.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2007-08-01  4:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-31 12:48 [PATCH 1/4] Fix allocation of "int*" instead of "int" Christian Couder
2007-07-31 19:56 ` Jeff King
2007-08-01  4:11   ` Christian Couder

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).