- Fix padding of struct regional for 32bit systems.

This commit is contained in:
W.C.A. Wijngaards 2020-11-24 17:06:54 +01:00
parent 978d3840dc
commit 4e8a1ede3b
2 changed files with 4 additions and 0 deletions

View File

@ -8,6 +8,7 @@
- tag for the 1.13.0rc1 release.
- Fix crash when TLS connection is closed prematurely, when
reuse tree comparison is not properly identical to insertion.
- Fix padding of struct regional for 32bit systems.
23 November 2020: George
- Merge PR #313 from Ralph Dolmans: Replace edns-client-tag with

View File

@ -76,6 +76,9 @@ struct regional
char* data;
/** threshold for outside of chunk allocations */
size_t large_object_size;
/** padding for sizeof8 alignment of sizeof(struct regional)
* for 32bit systems */
size_t padding;
};
/**