diff options
-rw-r--r-- | lib/output.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/output.c b/lib/output.c index 61fbf832..01e50770 100644 --- a/lib/output.c +++ b/lib/output.c | |||
@@ -13,6 +13,7 @@ | |||
13 | 13 | ||
14 | // == Global variables | 14 | // == Global variables |
15 | static mp_output_format output_format = MP_FORMAT_DEFAULT; | 15 | static mp_output_format output_format = MP_FORMAT_DEFAULT; |
16 | static mp_output_detail_level level_of_detail = MP_DETAIL_ALL; | ||
16 | 17 | ||
17 | // == Prototypes == | 18 | // == Prototypes == |
18 | static char *fmt_subcheck_output(mp_output_format output_format, mp_subcheck check, unsigned int indentation); | 19 | static char *fmt_subcheck_output(mp_output_format output_format, mp_subcheck check, unsigned int indentation); |
@@ -202,7 +203,12 @@ mp_state_enum mp_compute_subcheck_state(const mp_subcheck check) { | |||
202 | } | 203 | } |
203 | 204 | ||
204 | mp_subcheck_list *scl = check.subchecks; | 205 | mp_subcheck_list *scl = check.subchecks; |
205 | mp_state_enum result = check.default_state; | 206 | |
207 | if (scl == NULL) { | ||
208 | return check.default_state; | ||
209 | } | ||
210 | |||
211 | mp_state_enum result = STATE_OK; | ||
206 | 212 | ||
207 | while (scl != NULL) { | 213 | while (scl != NULL) { |
208 | result = max_state_alt(result, mp_compute_subcheck_state(scl->subcheck)); | 214 | result = max_state_alt(result, mp_compute_subcheck_state(scl->subcheck)); |