mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
027614c263
Many places in our code assume that uint8_t is the same type as unsigned char. Test this assumption in the configure script. This is important because of the privileged aliasing properties of character types in C. Fixes #22410.
5 lines
242 B
Plaintext
5 lines
242 B
Plaintext
o Minor bugfixes (portability):
|
|
- Check at configure time whether uint8_t is unsigned char. Lots
|
|
of existing code already assumes this, and there could be strict
|
|
aliasing issues if they aren't the same type. Fixes #22410.
|