From 642b097a56e9ceed9cc19fe7ffb0968cc3a67bdc Mon Sep 17 00:00:00 2001 From: Albert Burt Date: Sat, 13 Oct 2018 18:25:35 -0400 Subject: [PATCH] doc: remove unneeded TODO for release_commit_memory The code that was merged with commit 1102405 left in an TODO that is no longer relevant. It seems as if we can remove this todo. util seems to not be a field of the struct commit, definition of struct commit --> commit.c:27 The commit list also, does not contain a field for util. Signed-off-by: Albert Burt --- commit.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/commit.c b/commit.c index 2d94e0b19984e2..2ff6dca0bc4ba5 100644 --- a/commit.c +++ b/commit.c @@ -357,8 +357,6 @@ void release_commit_memory(struct commit *c) c->index = 0; free_commit_buffer(c); free_commit_list(c->parents); - /* TODO: what about commit->util? */ - c->object.parsed = 0; }