Skip to content

Commit edafba9

Browse files
committed
Mitigate impact of cmake defining NDEBUG.
1 parent d9d6bb4 commit edafba9

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

ax25_pad.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,8 @@ packet_t ax25_from_text (char *monitor, int strict)
418418

419419
this_p->frame_len = 7 + 7 + 1 + 1;
420420
this_p->num_addr = (-1);
421-
assert (ax25_get_num_addr(this_p) == 2);
421+
(void) ax25_get_num_addr(this_p); // when num_addr is -1, this sets it properly.
422+
assert (this_p->num_addr == 2);
422423

423424

424425
/*

direwolf.h

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44
// TODO: include this file first before anything else in each .c file.
55

66

7+
#ifdef NDEBUG
8+
#undef NDEBUG // Because it would disable assert().
9+
#endif
10+
11+
712
#ifndef DIREWOLF_H
813
#define DIREWOLF_H 1
914

xid.c

+3
Original file line numberDiff line numberDiff line change
@@ -665,6 +665,9 @@ int main (int argc, char *argv[]) {
665665

666666
text_color_set (DW_COLOR_ERROR);
667667

668+
#ifdef NDEBUG
669+
#error "This won't work properly if NDEBUG is defined. It should be undefined in direwolf.h"
670+
#endif
668671
assert (n==1);
669672
assert (param.full_duplex == 0);
670673
assert (param.srej == srej_single);

0 commit comments

Comments
 (0)