mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-30 23:53:32 +01:00
Merge branch 'bug32765_041' into bug32771_042
This commit is contained in:
commit
df5c81fec0
4
changes/ticket32765
Normal file
4
changes/ticket32765
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
o Minor bugfixes (correctness checks):
|
||||||
|
- Use GCC/Clang's printf-checking feature to make sure that
|
||||||
|
tor_assertf() arguments are correctly typed. Fixes bug 32765;
|
||||||
|
bugfix on 0.4.1.1-alpha.
|
@ -242,10 +242,12 @@
|
|||||||
|
|
||||||
void tor_assertion_failed_(const char *fname, unsigned int line,
|
void tor_assertion_failed_(const char *fname, unsigned int line,
|
||||||
const char *func, const char *expr,
|
const char *func, const char *expr,
|
||||||
const char *fmt, ...);
|
const char *fmt, ...)
|
||||||
|
CHECK_PRINTF(5,6);
|
||||||
void tor_bug_occurred_(const char *fname, unsigned int line,
|
void tor_bug_occurred_(const char *fname, unsigned int line,
|
||||||
const char *func, const char *expr,
|
const char *func, const char *expr,
|
||||||
int once, const char *fmt, ...);
|
int once, const char *fmt, ...)
|
||||||
|
CHECK_PRINTF(6,7);
|
||||||
|
|
||||||
void tor_abort_(void) ATTR_NORETURN;
|
void tor_abort_(void) ATTR_NORETURN;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user