diff options
author | Neil Fortner <nfortne2@hdfgroup.org> | 2022-02-18 15:28:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-18 15:28:21 (GMT) |
commit | 42c419e2661f67a80cef445084d28ac25572244e (patch) | |
tree | bd256664cb1a698e092732173aaef53ae67b1a30 /src/H5Opkg.h | |
parent | feda52b08488dbb3e5b2450f6cd63baa98b0e57e (diff) | |
download | hdf5-42c419e2661f67a80cef445084d28ac25572244e.zip hdf5-42c419e2661f67a80cef445084d28ac25572244e.tar.gz hdf5-42c419e2661f67a80cef445084d28ac25572244e.tar.bz2 |
Fix issue with copying null new references (#1440)
* Fix issue with copying null new references. Fix assertion failure when
reference copying fails.
* Committing clang-format changes
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'src/H5Opkg.h')
-rw-r--r-- | src/H5Opkg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Opkg.h b/src/H5Opkg.h index ebfe636..1fe918d 100644 --- a/src/H5Opkg.h +++ b/src/H5Opkg.h @@ -551,7 +551,7 @@ H5_DLL herr_t H5O__visit(H5G_loc_t *loc, const char *obj_name, H5_index_t idx_ty H5O_iterate2_t op, void *op_data, unsigned fields); H5_DLL herr_t H5O__inc_rc(H5O_t *oh); H5_DLL herr_t H5O__dec_rc(H5O_t *oh); -H5_DLL herr_t H5O__free(H5O_t *oh); +H5_DLL herr_t H5O__free(H5O_t *oh, hbool_t force); /* Object header message routines */ H5_DLL herr_t H5O__msg_alloc(H5F_t *f, H5O_t *oh, const H5O_msg_class_t *type, unsigned *mesg_flags, |