summaryrefslogtreecommitdiffstats
path: root/src/H5Gtest.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2013-02-09 17:21:24 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2013-02-09 17:21:24 (GMT)
commit99c03f4fb6fc736cb87c210e06b12d673c535d56 (patch)
tree0351e19aa837798f8b0952fed0ac941c6c415cfb /src/H5Gtest.c
parentbf59bd4d095272019248fd42ca71455fe2712952 (diff)
downloadhdf5-99c03f4fb6fc736cb87c210e06b12d673c535d56.zip
hdf5-99c03f4fb6fc736cb87c210e06b12d673c535d56.tar.gz
hdf5-99c03f4fb6fc736cb87c210e06b12d673c535d56.tar.bz2
[svn-r23239] Description:
Bring r23238 from trunk to 1.8 branch: 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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Gtest.c b/src/H5Gtest.c
index 00f5fa9..9b05102 100644
--- a/src/H5Gtest.c
+++ b/src/H5Gtest.c
@@ -562,7 +562,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;