aboutsummaryrefslogtreecommitdiff
path: root/modules/benchmark.c
diff options
context:
space:
mode:
authorhwspeedy <ns@bigbear.dk>2024-03-14 13:25:09 +0100
committerhwspeedy <ns@bigbear.dk>2024-03-14 13:25:09 +0100
commit48039e8c9350c9e55d3d939d430dd4f9dfd288c5 (patch)
tree9364ce21b5bfaad264fd0297471ff821659bf4a7 /modules/benchmark.c
parent66246c7746387b27f22581befa76c12bdbf242f0 (diff)
FIX GCC warnings and 3 potential crash never seen
Diffstat (limited to 'modules/benchmark.c')
-rw-r--r--modules/benchmark.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/benchmark.c b/modules/benchmark.c
index 511c984e..59f81501 100644
--- a/modules/benchmark.c
+++ b/modules/benchmark.c
@@ -518,7 +518,7 @@ static gchar *benchmark_include_results_internal(bench_value this_machine_value,
ShellOrderType order_type)
{
bench_result *this_machine;
- GSList *result_list, *li;
+ GSList *result_list=NULL, *li;
gchar *results = g_strdup("");
gchar *output;
gchar *path;