From ed6373473cdc96b07fef03d79c0592c972c257a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mario=20H=C3=BCttel?= Date: Mon, 29 May 2023 23:13:06 +0200 Subject: [PATCH] Fix use of unitialized variable for nocolor terminal output --- src/main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.c b/src/main.c index 24fac12..b44b37c 100644 --- a/src/main.c +++ b/src/main.c @@ -239,6 +239,7 @@ static void prepare_default_opts(struct command_line_options *opts) opts->output_section = NULL; opts->export_xml = NULL; opts->import_xml = NULL; + opts->force_nocolor = false; } static void print_verbose_start_info(const struct command_line_options *cmd_opts)