diff options
author | Carlos Martín Nieto <carlos@cmartin.tk> | 2012-02-07 10:51:57 +0100 |
---|---|---|
committer | Carlos Martín Nieto <carlos@cmartin.tk> | 2012-02-07 11:33:02 +0100 |
commit | 97313ce2a36e6184334bd070faa8b87b1b150621 (patch) | |
tree | da3f57115c6c458857c0ffa3eb14a7982f8e9d5d /src | |
parent | 242a1cea8d66d9ec185044f345b22fec1940178f (diff) | |
download | libgit2-97313ce2a36e6184334bd070faa8b87b1b150621.tar.gz |
revwalk: unmark commits as uninteresting on reset
Not doing so hides commits we want to get at during a second walk.
Diffstat (limited to 'src')
-rw-r--r-- | src/revwalk.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/revwalk.c b/src/revwalk.c index d632a19b8..9c8bc02e9 100644 --- a/src/revwalk.c +++ b/src/revwalk.c @@ -558,6 +558,7 @@ void git_revwalk_reset(git_revwalk *walk) commit->seen = 0; commit->in_degree = 0; commit->topo_delay = 0; + commit->uninteresting = 0; ); git_pqueue_clear(&walk->iterator_time); |