Commit c569738c by Edward Thomson

indexer: write raw id data

Don't write the object id structure, write its raw oid data.
parent 563751d1
...@@ -1269,7 +1269,7 @@ int git_indexer_commit(git_indexer *idx, git_indexer_progress *stats) ...@@ -1269,7 +1269,7 @@ int git_indexer_commit(git_indexer *idx, git_indexer_progress *stats)
/* Write out the object names (SHA-1 hashes) */ /* Write out the object names (SHA-1 hashes) */
git_vector_foreach(&idx->objects, i, entry) { git_vector_foreach(&idx->objects, i, entry) {
git_filebuf_write(&index_file, &entry->oid, sizeof(git_oid)); git_filebuf_write(&index_file, &entry->oid.id, GIT_OID_RAWSZ);
} }
/* Write out the CRC32 values */ /* Write out the CRC32 values */
......
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