mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-01-30 15:32:37 +08:00
Fix a possible uninitialized variable in pio_perf (#2461)
This commit is contained in:
parent
c240856c8a
commit
02b93cad26
@ -311,7 +311,7 @@ run_test_loop(struct options *opts)
|
||||
{
|
||||
parameters parms;
|
||||
int num_procs;
|
||||
int doing_pio; /* if this process is doing PIO */
|
||||
int doing_pio = 0; /* if this process is doing parallel IO */
|
||||
|
||||
parms.num_files = opts->num_files;
|
||||
parms.num_dsets = opts->num_dsets;
|
||||
|
Loading…
Reference in New Issue
Block a user