Merge branch 'ds/commit-graph-incremental'
Leakfix. * ds/commit-graph-incremental: commit-graph: release strbufs after use
This commit is contained in:
@ -434,6 +434,7 @@ static struct commit_graph *load_commit_graph_chain(struct repository *r, const
|
|||||||
|
|
||||||
free(oids);
|
free(oids);
|
||||||
fclose(fp);
|
fclose(fp);
|
||||||
|
strbuf_release(&line);
|
||||||
|
|
||||||
return graph_chain;
|
return graph_chain;
|
||||||
}
|
}
|
||||||
@ -1186,7 +1187,7 @@ static int fill_oids_from_packs(struct write_commit_graph_context *ctx,
|
|||||||
}
|
}
|
||||||
|
|
||||||
stop_progress(&ctx->progress);
|
stop_progress(&ctx->progress);
|
||||||
strbuf_reset(&progress_title);
|
strbuf_release(&progress_title);
|
||||||
strbuf_release(&packname);
|
strbuf_release(&packname);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
@ -1713,10 +1714,8 @@ static void expire_commit_graphs(struct write_commit_graph_context *ctx)
|
|||||||
strbuf_addstr(&path, "/info/commit-graphs");
|
strbuf_addstr(&path, "/info/commit-graphs");
|
||||||
dir = opendir(path.buf);
|
dir = opendir(path.buf);
|
||||||
|
|
||||||
if (!dir) {
|
if (!dir)
|
||||||
strbuf_release(&path);
|
goto out;
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
strbuf_addch(&path, '/');
|
strbuf_addch(&path, '/');
|
||||||
dirnamelen = path.len;
|
dirnamelen = path.len;
|
||||||
@ -1745,6 +1744,9 @@ static void expire_commit_graphs(struct write_commit_graph_context *ctx)
|
|||||||
if (!found)
|
if (!found)
|
||||||
unlink(path.buf);
|
unlink(path.buf);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
out:
|
||||||
|
strbuf_release(&path);
|
||||||
}
|
}
|
||||||
|
|
||||||
int write_commit_graph(const char *obj_dir,
|
int write_commit_graph(const char *obj_dir,
|
||||||
|
Reference in New Issue
Block a user