aboutsummaryrefslogtreecommitdiff
path: root/src/ats
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2013-07-11 07:24:23 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2013-07-11 07:24:23 +0000
commit2322626e04b0f5ea2bd4acef8dcac8e4258b1c84 (patch)
tree45fe7d95ef2f0a86b14d459c5d04b74898e8c8de /src/ats
parent71983dd26e532a4b79194fbfe67928defd65c96e (diff)
downloadgnunet-2322626e04b0f5ea2bd4acef8dcac8e4258b1c84.tar.gz
gnunet-2322626e04b0f5ea2bd4acef8dcac8e4258b1c84.zip
fixing uninitialized values
Diffstat (limited to 'src/ats')
-rw-r--r--src/ats/perf_ats_mlp.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/ats/perf_ats_mlp.c b/src/ats/perf_ats_mlp.c
index 13e7e9f04..e2d3fb567 100644
--- a/src/ats/perf_ats_mlp.c
+++ b/src/ats/perf_ats_mlp.c
@@ -357,6 +357,14 @@ check (void *cls, char *const *args, const char *cfgfile,
357 /* solve */ 357 /* solve */
358 if (cp + 1 >= N_peers_start) 358 if (cp + 1 >= N_peers_start)
359 { 359 {
360
361 update_mip_dur = GNUNET_TIME_UNIT_FOREVER_REL;
362 update_lp_dur = GNUNET_TIME_UNIT_FOREVER_REL;
363 update_build_dur = GNUNET_TIME_UNIT_FOREVER_REL;
364 update_mip_presolv = GNUNET_SYSERR;
365 update_lp_presolv = GNUNET_SYSERR;
366 update_mip_res = GNUNET_SYSERR;
367 update_lp_res = GNUNET_SYSERR;
360 /* Solve the full problem */ 368 /* Solve the full problem */
361 GAS_mlp_solve_problem (mlp); 369 GAS_mlp_solve_problem (mlp);
362 full_lp_res = mlp->ps.lp_res; 370 full_lp_res = mlp->ps.lp_res;