Merge topic 'suppress-Wcast-align'
b9c4181 libarchive: Fix purposeful crash 87fde60 Suppress -Wcast-align in curl and bzip2
This commit is contained in:
commit
6afc8fed13
@ -47,6 +47,9 @@
|
|||||||
/* warning C4127: conditional expression is constant*/
|
/* warning C4127: conditional expression is constant*/
|
||||||
# pragma warning(disable:4127)
|
# pragma warning(disable:4127)
|
||||||
#endif
|
#endif
|
||||||
|
#if defined(__clang__)
|
||||||
|
# pragma clang diagnostic ignored "-Wcast-align"
|
||||||
|
#endif
|
||||||
|
|
||||||
/*-- General stuff. --*/
|
/*-- General stuff. --*/
|
||||||
|
|
||||||
|
@ -42,6 +42,10 @@
|
|||||||
#define WIN32
|
#define WIN32
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(__clang__)
|
||||||
|
# pragma clang diagnostic ignored "-Wcast-align"
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Include configuration script results or hand-crafted
|
* Include configuration script results or hand-crafted
|
||||||
* configuration file for platforms which lack config tool.
|
* configuration file for platforms which lack config tool.
|
||||||
|
@ -69,7 +69,7 @@ diediedie(void)
|
|||||||
/* Cause a breakpoint exception */
|
/* Cause a breakpoint exception */
|
||||||
DebugBreak();
|
DebugBreak();
|
||||||
#endif
|
#endif
|
||||||
*(char *)0 = 1; /* Deliberately segfault and force a coredump. */
|
*(char *)1 = 1; /* Deliberately segfault and force a coredump. */
|
||||||
_exit(1); /* If that didn't work, just exit with an error. */
|
_exit(1); /* If that didn't work, just exit with an error. */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user