mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-09 13:04:42 +00:00
Ensure pool data is aligned on an 8 byte boundary
This commit is contained in:
parent
3aaa5c7b46
commit
ad8c8d9325
@ -7,7 +7,7 @@ struct git_pool_page {
|
|||||||
git_pool_page *next;
|
git_pool_page *next;
|
||||||
uint32_t size;
|
uint32_t size;
|
||||||
uint32_t avail;
|
uint32_t avail;
|
||||||
char data[GIT_FLEX_ARRAY];
|
GIT_ALIGN(char data[GIT_FLEX_ARRAY], 8);
|
||||||
};
|
};
|
||||||
|
|
||||||
struct pool_freelist {
|
struct pool_freelist {
|
||||||
|
Loading…
Reference in New Issue
Block a user