diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2013-02-08 20:36:31 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2013-02-08 20:36:31 (GMT) |
commit | d91625d1392bfccdc500b151444030a05a639675 (patch) | |
tree | b1c5fcf07e6587e48955b479d807c4b72d103066 /src/H5Gtest.c | |
parent | 692fa69934553e34a7166fd919b90309bc4ecb23 (diff) | |
download | hdf5-d91625d1392bfccdc500b151444030a05a639675.zip hdf5-d91625d1392bfccdc500b151444030a05a639675.tar.gz hdf5-d91625d1392bfccdc500b151444030a05a639675.tar.bz2 |
[svn-r23238] Description:
Bring changes from Coverity branch to trunk:
r20528:
Purpose: Fix coverity issue 1372
Description: Rewrite file open secition of H5FD_stdio_open to avoid TOCTUO
condition. No longer calls access, and uses a tentative open in "rb" or "rb+"
mode to check for existence of the file.
r20609:
Use HDstrncpy and HDstrncat. --gh
r20611:
Use HDstrncpy. --gh
Tested on:
Mac OSX/64 10.8.2 (amazon) w/debug, C++ & FORTRAN
(h5committest not required, already tested on branch)
Diffstat (limited to 'src/H5Gtest.c')
-rw-r--r-- | src/H5Gtest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Gtest.c b/src/H5Gtest.c index b39b4ff..2b5d32a 100644 --- a/src/H5Gtest.c +++ b/src/H5Gtest.c @@ -568,7 +568,7 @@ H5G__user_path_test(hid_t obj_id, char *user_path, size_t *user_path_len, unsign /* Set the user path, if given */ if(user_path) - HDstrcpy(user_path, H5RS_get_str(obj_path->user_path_r)); + HDstrncpy(user_path, H5RS_get_str(obj_path->user_path_r), (size_t)(len + 1)); /* Set the length of the path */ *user_path_len = (size_t)len; |