aboutsummaryrefslogtreecommitdiff
path: root/src/ats-tests/gnunet-solver-eval.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ats-tests/gnunet-solver-eval.c')
-rw-r--r--src/ats-tests/gnunet-solver-eval.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/ats-tests/gnunet-solver-eval.c b/src/ats-tests/gnunet-solver-eval.c
index 09ddd7b2d..7a3461bf7 100644
--- a/src/ats-tests/gnunet-solver-eval.c
+++ b/src/ats-tests/gnunet-solver-eval.c
@@ -94,8 +94,8 @@ free_experiment (struct Experiment *e)
94 GNUNET_free (cur); 94 GNUNET_free (cur);
95 } 95 }
96 96
97 GNUNET_free_non_null (e->name); 97 GNUNET_free (e->name);
98 GNUNET_free_non_null (e->cfg_file); 98 GNUNET_free (e->cfg_file);
99 GNUNET_free (e); 99 GNUNET_free (e);
100} 100}
101 101
@@ -344,7 +344,7 @@ load_episode (struct Experiment *e,
344 GNUNET_free (op_name); 344 GNUNET_free (op_name);
345 GNUNET_free (op); 345 GNUNET_free (op);
346 GNUNET_free (sec_name); 346 GNUNET_free (sec_name);
347 GNUNET_free_non_null (pref); 347 GNUNET_free (pref);
348 GNUNET_free (o); 348 GNUNET_free (o);
349 return GNUNET_SYSERR; 349 return GNUNET_SYSERR;
350 } 350 }
@@ -364,7 +364,7 @@ load_episode (struct Experiment *e,
364 GNUNET_free (op_name); 364 GNUNET_free (op_name);
365 GNUNET_free (op); 365 GNUNET_free (op);
366 GNUNET_free (sec_name); 366 GNUNET_free (sec_name);
367 GNUNET_free_non_null (pref); 367 GNUNET_free (pref);
368 GNUNET_free (o); 368 GNUNET_free (o);
369 return GNUNET_SYSERR; 369 return GNUNET_SYSERR;
370 } 370 }
@@ -397,7 +397,7 @@ load_episode (struct Experiment *e,
397 fprintf (stderr, "Found operation %u in episode %u: %s [%llu]->[%llu]\n", 397 fprintf (stderr, "Found operation %u in episode %u: %s [%llu]->[%llu]\n",
398 op_counter, cur->id, print_op (o->type), o->src_id, o->dest_id); 398 op_counter, cur->id, print_op (o->type), o->src_id, o->dest_id);
399 399
400 GNUNET_free_non_null (type); 400 GNUNET_free (type);
401 GNUNET_free (op); 401 GNUNET_free (op);
402 402
403 GNUNET_CONTAINER_DLL_insert (cur->head, cur->tail, o); 403 GNUNET_CONTAINER_DLL_insert (cur->head, cur->tail, o);