mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-05 05:05:00 +00:00
xml_lpm_fuzzer: Protect assert(...) from NDEBUG
This commit is contained in:
parent
5551e205d2
commit
2ca8b39167
1 changed files with 4 additions and 0 deletions
|
@ -29,6 +29,10 @@
|
|||
USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#if defined(NDEBUG)
|
||||
# undef NDEBUG // because checks below rely on assert(...)
|
||||
#endif
|
||||
|
||||
#include <assert.h>
|
||||
#include <stdint.h>
|
||||
#include <vector>
|
||||
|
|
Loading…
Add table
Reference in a new issue