mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-24 14:51:11 +01:00
Previously, our use of abort() would break anywhere that we didn't include stdlib.h. This was especially troublesome in case where tor_assert_nonfatal() was used with ALL_BUGS_ARE_FATAL, since that one seldom gets tested. As an alternative, we could have just made this header include stdlib.h. But that seems bloaty. Fixes bug 30189; bugfix on 0.3.4.1-alpha.
4 lines
258 B
Text
4 lines
258 B
Text
o Minor bugfixes (compilation, unusual configuration):
|
|
- Avoid failures when building with ALL_BUGS_ARE_FAILED due to
|
|
missing declarations of abort(), and prevent other such failures
|
|
in the future. Fixes bug 30189; bugfix on 0.3.4.1-alpha.
|