summaryrefslogtreecommitdiffstats
path: root/src/H5Gname.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/H5Gname.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/H5Gname.c')
-rw-r--r--src/H5Gname.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Gname.c b/src/H5Gname.c
index 7bccce7..018c055 100644
--- a/src/H5Gname.c
+++ b/src/H5Gname.c
@@ -764,7 +764,7 @@ H5G_name_move_path(H5RS_str_t **path_r_ptr, const char *full_suffix, const char
/* Create the new path */
if(path_prefix2_len > 0) {
- HDstrncpy(new_path, path_prefix2, path_prefix2_len);
+ HDstrncpy(new_path, path_prefix2, path_prefix2_len + 1);
HDstrncpy(new_path + path_prefix2_len, dst_suffix, dst_suffix_len + 1);
} /* end if */
else