diff options
author | René Scharfe <rene.scharfe@lsrfire.ath.cx> | 2011-10-01 17:56:08 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-10-03 11:04:34 -0700 |
commit | 4a43d374fcbdea26b3596592a497a1c16f90b9e6 (patch) | |
tree | 02309fa81949421e5b2e6a6045c6687f03b31fd8 | |
parent | 468224e580aeb55bd85b37b86f32baada3d17f1e (diff) | |
download | git-4a43d374fcbdea26b3596592a497a1c16f90b9e6.tar.gz git-4a43d374fcbdea26b3596592a497a1c16f90b9e6.tar.xz |
revision: add leak_pending flag
The new flag leak_pending in struct rev_info can be used to prevent
prepare_revision_walk from freeing the list of pending objects. It
will still forget about them, so it really is leaked. This behaviour
may look weird at first, but it can be useful if the pointer to the
list is saved before calling prepare_revision_walk.
Signed-off-by: Rene Scharfe <rene.scharfe@lsrfire.ath.cx>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | revision.c | 3 | ||||
-rw-r--r-- | revision.h | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/revision.c b/revision.c index 2e8aa3393..6d329b46d 100644 --- a/revision.c +++ b/revision.c @@ -1974,7 +1974,8 @@ int prepare_revision_walk(struct rev_info *revs) } e++; } - free(list); + if (!revs->leak_pending) + free(list); if (revs->no_walk) return 0; diff --git a/revision.h b/revision.h index 45412656d..366a9b49b 100644 --- a/revision.h +++ b/revision.h @@ -97,6 +97,7 @@ struct rev_info { date_mode_explicit:1, preserve_subject:1; unsigned int disable_stdin:1; + unsigned int leak_pending:1; enum date_mode date_mode; |