git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v5] commit-graph: remove a duplicate assignment
@ 2019-10-01  2:29 Alex Henrie
  2019-10-01  2:29 ` [PATCH v5] diffcore-break: use a goto instead of a redundant if statement Alex Henrie
  2019-10-01  2:29 ` [PATCH v5] wrapper: use a loop instead of repetitive statements Alex Henrie
  0 siblings, 2 replies; 5+ messages in thread
From: Alex Henrie @ 2019-10-01  2:29 UTC (permalink / raw)
  To: git, dstolee, gitster, cb; +Cc: Alex Henrie, Derrick Stolee

Leave the variable 'g' uninitialized before it is set just before its
first use in front of a loop, which is a much more appropriate place to
indicate what it is used for.

Also initialize the variable 'num_commits' just before the loop instead
of at the beginning of the function for the same reason.

Reviewed-by: Derrick Stolee <stolee@gmail.com>
Signed-off-by: Alex Henrie <alexhenrie24@gmail.com>
---
 commit-graph.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/commit-graph.c b/commit-graph.c
index 9b02d2c426..4028508e9c 100644
--- a/commit-graph.c
+++ b/commit-graph.c
@@ -1522,8 +1522,8 @@ static int write_commit_graph_file(struct write_commit_graph_context *ctx)
 
 static void split_graph_merge_strategy(struct write_commit_graph_context *ctx)
 {
-	struct commit_graph *g = ctx->r->objects->commit_graph;
-	uint32_t num_commits = ctx->commits.nr;
+	struct commit_graph *g;
+	uint32_t num_commits;
 	uint32_t i;
 
 	int max_commits = 0;
@@ -1535,6 +1535,7 @@ static void split_graph_merge_strategy(struct write_commit_graph_context *ctx)
 	}
 
 	g = ctx->r->objects->commit_graph;
+	num_commits = ctx->commits.nr;
 	ctx->num_commit_graphs_after = ctx->num_commit_graphs_before + 1;
 
 	while (g && (g->num_commits <= size_mult * num_commits ||
-- 
2.23.0


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

end of thread, other threads:[~2019-10-02 15:32 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-10-01  2:29 [PATCH v5] commit-graph: remove a duplicate assignment Alex Henrie
2019-10-01  2:29 ` [PATCH v5] diffcore-break: use a goto instead of a redundant if statement Alex Henrie
2019-10-01  2:29 ` [PATCH v5] wrapper: use a loop instead of repetitive statements Alex Henrie
2019-10-02  6:06   ` Junio C Hamano
2019-10-02 15:32     ` Jeff King

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).