Skip to content

Commit

Permalink
Fix yet another uninitialized variable in run_test_alltoall()
Browse files Browse the repository at this point in the history
  • Loading branch information
sydidelot committed Jun 11, 2019
1 parent a6a15a8 commit c30b104
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net_sanitizer.c
Original file line number Diff line number Diff line change
Expand Up @@ -883,7 +883,7 @@ static double run_test_alltoall_pair(

static double run_test_alltoall(const struct test_config *config)
{
double total_exec_time = 0, step_exec_time;
double total_exec_time = 0, step_exec_time = 0;
int npeers = my.nclients;

if (my.output_mode == OUTPUT_VERBOSE)
Expand Down

0 comments on commit c30b104

Please sign in to comment.