diff options
author | Sean McBride <sean@rogue-research.com> | 2022-01-28 16:34:57 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-28 16:34:57 (GMT) |
commit | b5eed1b56324fc07154c2e2d8251d2b87505ca23 (patch) | |
tree | b3e3840a886966ae07e50a69ab7492ebe4df876c /examples | |
parent | 44de59b642c4d5ccf505a1072d10b63dc9fe0628 (diff) | |
download | hdf5-b5eed1b56324fc07154c2e2d8251d2b87505ca23.zip hdf5-b5eed1b56324fc07154c2e2d8251d2b87505ca23.tar.gz hdf5-b5eed1b56324fc07154c2e2d8251d2b87505ca23.tar.bz2 |
Replaced several uses of sprintf with safer snprintf (#1383)
* Replaced several uses of sprintf with safer snprintf
* Committing clang-format changes
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'examples')
-rw-r--r-- | examples/ph5example.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/ph5example.c b/examples/ph5example.c index 87632e5..23af477 100644 --- a/examples/ph5example.c +++ b/examples/ph5example.c @@ -934,7 +934,7 @@ mkfilenames(char *prefix) "Need to adjust the code to accommodate the large size.\n"); } for (i = 0; i < n; i++) { - sprintf(testfiles[i], "%s/ParaEg%d.h5", prefix, i); + snprintf(testfiles[i], PATH_MAX, "%s/ParaEg%d.h5", prefix, i); } return (0); } |