diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2019-12-11 20:12:06 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2019-12-11 20:12:06 (GMT) |
commit | 9b38aef978299a76b6b19586396bf626a1e58df6 (patch) | |
tree | a6309eba0df7be428aa5fce7ce3e40670f0dfda4 /src | |
parent | 3eef4d575ebd23eeb54660e244e604e0159a0aec (diff) | |
parent | 555d7a6ce3731fb27e67fed692196a38a77c8d62 (diff) | |
download | hdf5-9b38aef978299a76b6b19586396bf626a1e58df6.zip hdf5-9b38aef978299a76b6b19586396bf626a1e58df6.tar.gz hdf5-9b38aef978299a76b6b19586396bf626a1e58df6.tar.bz2 |
Merge pull request #2129 in HDFFV/hdf5 from ~BYRN/hdf5_merge_adb:hdf5_1_12 to hdf5_1_12
* commit '555d7a6ce3731fb27e67fed692196a38a77c8d62':
Fix 2010 compile issue
Diffstat (limited to 'src')
-rw-r--r-- | src/H5Dchunk.c | 2 | ||||
-rw-r--r-- | src/H5Rint.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Dchunk.c b/src/H5Dchunk.c index 381ca4a..2536661 100644 --- a/src/H5Dchunk.c +++ b/src/H5Dchunk.c @@ -2169,9 +2169,9 @@ H5D__create_chunk_mem_map_1d(const H5D_chunk_map_t *fm) chunk_info->mspace_shared = TRUE; } /* end if */ else { - HDassert(fm->m_ndims == 1); hsize_t mem_sel_start[H5S_MAX_RANK]; /* Offset of low bound of file selection */ hsize_t mem_sel_end[H5S_MAX_RANK]; /* Offset of high bound of file selection */ + HDassert(fm->m_ndims == 1); if(H5S_SELECT_BOUNDS(fm->mem_space, mem_sel_start, mem_sel_end) < 0) HGOTO_ERROR(H5E_DATASPACE, H5E_CANTGET, FAIL, "can't get file selection bound info") diff --git a/src/H5Rint.c b/src/H5Rint.c index 9879865..90f8249 100644 --- a/src/H5Rint.c +++ b/src/H5Rint.c @@ -1170,8 +1170,8 @@ H5R__encode_region(H5S_t *space, unsigned char *buf, size_t *nalloc) /* Don't encode if buffer size isn't big enough or buffer is empty */ if(buf && *nalloc >= ((size_t)buf_size + 2 * H5_SIZEOF_UINT32_T)) { - p = (uint8_t *)buf; int rank; + p = (uint8_t *)buf; /* Encode the size for safety check */ UINT32ENCODE(p, (uint32_t)buf_size); |