From: Arran Cudbard-Bell Date: Sat, 30 Oct 2021 17:58:22 +0000 (-0400) Subject: Init more vars in minmax heap tests X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c5862856933be14c930f06d6f4e9ea188bef5819;p=thirdparty%2Ffreeradius-server.git Init more vars in minmax heap tests --- diff --git a/src/lib/util/minmax_heap_tests.c b/src/lib/util/minmax_heap_tests.c index 48434af6673..1d641b576d2 100644 --- a/src/lib/util/minmax_heap_tests.c +++ b/src/lib/util/minmax_heap_tests.c @@ -473,7 +473,7 @@ static void queue_cmp(unsigned int count) { minmax_heap_thing **array; populate_values(values, count); - fr_time_t start_alloc, end_alloc, start_insert, end_insert, start_pop, end_pop, end_pop_first; + fr_time_t start_alloc, end_alloc, start_insert, end_insert, start_pop, end_pop, end_pop_first = fr_time_min(); start_alloc = fr_time(); array = talloc_array(NULL, minmax_heap_thing *, count);