diff options
author | Alexandre Julliard <julliard@winehq.org> | 2006-11-24 15:58:50 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-11-24 15:42:50 -0800 |
commit | d64d6c9fc712cf6fad9a3ec7f659cf843ee2e18d (patch) | |
tree | 0b105c98fa79a62e4fc91702f5787209c69f17f2 /shallow.c | |
parent | d158631549b87e11f2415622e421546539b09b67 (diff) | |
download | git-d64d6c9fc712cf6fad9a3ec7f659cf843ee2e18d.tar.gz |
get_shallow_commits: Avoid memory leak if a commit has been reached already.
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'shallow.c')
-rw-r--r-- | shallow.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -60,7 +60,9 @@ struct commit_list *get_shallow_commits(struct object_array *heads, int depth, commit = NULL; continue; } - commit->util = xcalloc(1, sizeof(int)); + if (!commit->util) + commit->util = xmalloc(sizeof(int)); + *(int *)commit->util = 0; cur_depth = 0; } else { commit = (struct commit *) |