diff options
author | Kimmy Mu <kmu@hdfgroup.org> | 2020-01-23 03:34:17 (GMT) |
---|---|---|
committer | kmu <kmu@hdfgroup.org> | 2020-01-28 02:44:23 (GMT) |
commit | b87a4362a12428613c2b8bd3ba2aa33828b4d5af (patch) | |
tree | 15d4e1765ac655f6167b312720fe328ed290ccbe /tools | |
parent | a4f163c7c6b562509f403f602a8fb09f7b1124ec (diff) | |
download | hdf5-b87a4362a12428613c2b8bd3ba2aa33828b4d5af.zip hdf5-b87a4362a12428613c2b8bd3ba2aa33828b4d5af.tar.gz hdf5-b87a4362a12428613c2b8bd3ba2aa33828b4d5af.tar.bz2 |
Merge pull request #2291 in HDFFV/hdf5 from ~KMU/hdf5:bugfix/uninitialized to develop
* commit '2de0ce0d8ba2fb58fadefc5d718a3c0fedab25c8':
fix uninitizlized warning
Diffstat (limited to 'tools')
-rw-r--r-- | tools/test/perform/perf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/test/perform/perf.c b/tools/test/perform/perf.c index 2b23653..8926d14 100644 --- a/tools/test/perform/perf.c +++ b/tools/test/perform/perf.c @@ -115,7 +115,7 @@ extern char *optarg; int main(int argc, char **argv) { - char *buf, *tmp, *buf2, *tmp2, *check; + char *buf, *tmp, *buf2 = NULL, *tmp2 = NULL, *check; int i, j, mynod=0, nprocs=1, my_correct = 1, correct, myerrno; double stim, etim; double write_tim = 0; |