commit-graph: clean up leaked memory during write
[gitweb.git] / builtin / commit-graph.c
index 0bf0c486575a8557b729658ce05be02d28a1a8b8..bc0fa9ba525a2e2a67610c2bbbaba37e00676cb8 100644 (file)
@@ -151,7 +151,7 @@ static int graph_write(int argc, const char **argv)
                opts.obj_dir = get_object_directory();
 
        if (opts.reachable) {
-               write_commit_graph_reachable(opts.obj_dir, opts.append);
+               write_commit_graph_reachable(opts.obj_dir, opts.append, 1);
                return 0;
        }
 
@@ -171,7 +171,8 @@ static int graph_write(int argc, const char **argv)
        write_commit_graph(opts.obj_dir,
                           pack_indexes,
                           commit_hex,
-                          opts.append);
+                          opts.append,
+                          1);
 
        string_list_clear(&lines, 0);
        return 0;