diff options
author | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2015-04-10 17:47:16 (GMT) |
---|---|---|
committer | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2015-04-10 17:47:16 (GMT) |
commit | 3b72762036c65978ef96bb1422a671dce20ba46e (patch) | |
tree | 7da68b47d261a1ea03e1536de72aeac6f7c6392b /src/H5Apkg.h | |
parent | b452fc97e6bc7c0a4b3d143cfef7ef10bb53b88d (diff) | |
download | hdf5-3b72762036c65978ef96bb1422a671dce20ba46e.zip hdf5-3b72762036c65978ef96bb1422a671dce20ba46e.tar.gz hdf5-3b72762036c65978ef96bb1422a671dce20ba46e.tar.bz2 |
[svn-r26777] - Fix usage of the internal AC global dxpls
- allocate sieve buffer with calloc instead of malloc
tested with h5committest
Diffstat (limited to 'src/H5Apkg.h')
-rw-r--r-- | src/H5Apkg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Apkg.h b/src/H5Apkg.h index efa2b74..f587f81 100644 --- a/src/H5Apkg.h +++ b/src/H5Apkg.h @@ -206,9 +206,9 @@ H5_DLL herr_t H5A_close(H5A_t *attr); H5_DLL htri_t H5A_get_ainfo(H5F_t *f, hid_t dxpl_id, H5O_t *oh, H5O_ainfo_t *ainfo); H5_DLL herr_t H5A_set_version(const H5F_t *f, H5A_t *attr); H5_DLL herr_t H5A_rename_by_name(H5G_loc_t loc, const char *obj_name, const char *old_attr_name, - const char *new_attr_name, hid_t lapl_id); + const char *new_attr_name, hid_t lapl_id, hid_t dxpl_id); H5_DLL htri_t H5A_exists_by_name(H5G_loc_t loc, const char *obj_name, const char *attr_name, - hid_t lapl_id); + hid_t lapl_id, hid_t dxpl_id); /* Attribute "dense" storage routines */ H5_DLL herr_t H5A_dense_create(H5F_t *f, hid_t dxpl_id, H5O_ainfo_t *ainfo); |