mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-27 22:03:31 +01:00
Merge branch 'maint-0.2.7'
This commit is contained in:
commit
a7f303a481
4
changes/bug14821
Normal file
4
changes/bug14821
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
o Major bugfixes (compilation):
|
||||||
|
- Correctly repair hardened builds under the clang compiler. Previously,
|
||||||
|
our use of _FORTIFY_SOURCE would conflict with clang's address
|
||||||
|
sanitizer. Closes ticket 14821.
|
@ -42,6 +42,15 @@
|
|||||||
#include <netinet6/in6.h>
|
#include <netinet6/in6.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(__has_feature)
|
||||||
|
# if __has_feature(address_sanitizer)
|
||||||
|
/* Some of the fancy glibc strcmp() macros include references to memory that
|
||||||
|
* clang rejects because it is off the end of a less-than-3. Clang hates this,
|
||||||
|
* even though those references never actually happen. */
|
||||||
|
# undef strcmp
|
||||||
|
# endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user