diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2011-02-08 21:40:24 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2011-02-08 21:40:24 (GMT) |
commit | 84ef7b0ad231923273dd5a1d9612e5d5f271968c (patch) | |
tree | db7b3b37855c1ab9901fac063f84279393cb0dc8 /src/H5FDlog.h | |
parent | 20b58606caaff62d70a7bdfc03dcead16e1e30d4 (diff) | |
download | hdf5-84ef7b0ad231923273dd5a1d9612e5d5f271968c.zip hdf5-84ef7b0ad231923273dd5a1d9612e5d5f271968c.tar.gz hdf5-84ef7b0ad231923273dd5a1d9612e5d5f271968c.tar.bz2 |
[svn-r20066] Description:
Bring r20065 from trunk to 1.8 branch:
Bring changes from Coverity branch to trunk:
r19975:
Fixed potential mem leak at H5O_attr_open_by_name
r19980:
Fix coverity issue 792.
Free tmp_env_prefix in H5Lexternal.c line 365 if it is not NULL but its contents are 0 when it goes out of scope.
r20039:
Eliminate warnings about nested extern and implicit declarations of parallel_print and address Coverity defects 712-781 by #including h5tools_utils.h in h5diff_array.c, h5diff_attr.c, h5diff_dset.c and h5diff_util.c.
r20046:
Purpose: Address TOCTOU warnings in h5jam and h5unjam
Description: Coverity is afraid that the state of the input file could change
between the call to stat() and the call to open(). This is called a time-of-
check time-of-use (TOCTOU) vulnerability. Modified stat calls to fstat which
uses an open file pointer so it (hopefully) won't complain any more.
r20047:
Addressed coverity issues 135-137, 462-464. Local pointers that needed to be freed in case of error were moved out of a switch statement in src/H5Tnative.c, set to NULL, and checked before freeing.
Tested on:
Mac OS X/32 10.6.6 (amazon) w/debug & production
(h5committested on Coverity branch)
Diffstat (limited to 'src/H5FDlog.h')
-rw-r--r-- | src/H5FDlog.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5FDlog.h b/src/H5FDlog.h index bd1bbe2..ffc4df1 100644 --- a/src/H5FDlog.h +++ b/src/H5FDlog.h @@ -38,13 +38,13 @@ #define H5FD_LOG_FILE_IO (H5FD_LOG_FILE_READ|H5FD_LOG_FILE_WRITE) /* Flag for tracking "flavor" (type) of information stored at each byte */ #define H5FD_LOG_FLAVOR 0x00000020 -/* Flags for tracking total number of reads/writes/seeks */ +/* Flags for tracking total number of reads/writes/seeks/truncates */ #define H5FD_LOG_NUM_READ 0x00000040 #define H5FD_LOG_NUM_WRITE 0x00000080 #define H5FD_LOG_NUM_SEEK 0x00000100 #define H5FD_LOG_NUM_TRUNCATE 0x00000200 #define H5FD_LOG_NUM_IO (H5FD_LOG_NUM_READ|H5FD_LOG_NUM_WRITE|H5FD_LOG_NUM_SEEK|H5FD_LOG_NUM_TRUNCATE) -/* Flags for tracking time spent in open/read/write/seek/close */ +/* Flags for tracking time spent in open/stat/read/write/seek/close */ #define H5FD_LOG_TIME_OPEN 0x00000400 #define H5FD_LOG_TIME_STAT 0x00000800 #define H5FD_LOG_TIME_READ 0x00001000 |