Commit 55f72c19 by Jacques Germishuys Committed by Carlos Martín Nieto

Ensure pool data is aligned on an 8 byte boundary

parent f975fe90
......@@ -7,7 +7,7 @@ struct git_pool_page {
git_pool_page *next;
uint32_t size;
uint32_t avail;
char data[GIT_FLEX_ARRAY];
GIT_ALIGN(char data[GIT_FLEX_ARRAY], 8);
};
struct pool_freelist {
......
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