Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
Merge branch 'kg/packed-ref-cache-fix'
[gitweb.git]
/
packfile.c
diff --git
a/packfile.c
b/packfile.c
index 2d5774dbc0901895b4dfc0d66cc03d3c253a3e95..7dbe8739d17d64fad79eac9e7477d00ea3d80df2 100644
(file)
--- a/
packfile.c
+++ b/
packfile.c
@@
-1713,8
+1713,7
@@
off_t nth_packed_object_offset(const struct packed_git *p, uint32_t n)
return off;
index += p->num_objects * 4 + (off & 0x7fffffff) * 8;
check_pack_index_ptr(p, index);
- return (((uint64_t)ntohl(*((uint32_t *)(index + 0)))) << 32) |
- ntohl(*((uint32_t *)(index + 4)));
+ return get_be64(index);
}
}