Enable asserts for Coverity too.

This commit is contained in:
Todd C. Miller
2019-08-30 14:05:03 -06:00
parent ffaef7939a
commit d94798e5d0

View File

@@ -46,7 +46,7 @@
#endif
/* Enable asserts() to avoid static analyzer false positives. */
#if !defined(SUDO_DEVEL) && !defined(__clang_analyzer__)
#if !(defined(SUDO_DEVEL) || defined(__clang_analyzer__) || defined(__COVERITY__))
# define NDEBUG
#endif