Commit 261267e0 by Patrick Steinhardt

odb_pack: fix passing partially initialized indexer options

parent 6b51f380
...@@ -519,7 +519,7 @@ static int pack_backend__writepack(struct git_odb_writepack **out, ...@@ -519,7 +519,7 @@ static int pack_backend__writepack(struct git_odb_writepack **out,
git_transfer_progress_cb progress_cb, git_transfer_progress_cb progress_cb,
void *progress_payload) void *progress_payload)
{ {
git_indexer_options opts; git_indexer_options opts = GIT_INDEXER_OPTIONS_INIT;
struct pack_backend *backend; struct pack_backend *backend;
struct pack_writepack *writepack; struct pack_writepack *writepack;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment