commit 57766fbae6562a7b6e13720c9b33f449c9ef9b5e
parent 950254e6bfe00fb96b4991378305c0345b7f2812
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date: Fri, 12 Jan 2018 11:57:05 +0100
BugFix in debug code (uninitialized variable)
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/sdis_solve_probe.c b/src/sdis_solve_probe.c
@@ -437,7 +437,7 @@ compute_temperature
{
#ifndef NDEBUG
struct temperature* stack = NULL;
- size_t istack;
+ size_t istack = 0;
#endif
res_T res = RES_OK;
ASSERT(scn && fp_to_meter && rwalk && rng && T);