summaryrefslogtreecommitdiffstats
path: root/src/H5Goh.c
diff options
context:
space:
mode:
authorVailin Choi <vchoi@hdfgroup.org>2012-04-05 19:14:38 (GMT)
committerVailin Choi <vchoi@hdfgroup.org>2012-04-05 19:14:38 (GMT)
commitdee21e9e82cecc5a15d62e3fec02f3c46eb8231b (patch)
treed3eb67916366552f1dca12afa687951608c1bc68 /src/H5Goh.c
parent9ac4faa9230bb97c4e3f7c4465c6a55dbde30e14 (diff)
downloadhdf5-dee21e9e82cecc5a15d62e3fec02f3c46eb8231b.zip
hdf5-dee21e9e82cecc5a15d62e3fec02f3c46eb8231b.tar.gz
hdf5-dee21e9e82cecc5a15d62e3fec02f3c46eb8231b.tar.bz2
[svn-r22252] Fixed a bug in H5Ocopy(): When copying an opened object, call the object's
flush class action to ensure that cached data is flushed so that H5Ocopy will get the correct data. (HDFFV-7853) this line, and those below, will be ignored-- _M . M test/objcopy.c M src/H5Ocopy.c M src/H5Goh.c M src/H5Dint.c M src/H5Opkg.h M src/H5Doh.c M src/H5Toh.c M src/H5O.c M src/H5Dpkg.h M release_docs/RELEASE.txt _M fortran
Diffstat (limited to 'src/H5Goh.c')
-rw-r--r--src/H5Goh.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5Goh.c b/src/H5Goh.c
index 27c88f5..fbf72bd 100644
--- a/src/H5Goh.c
+++ b/src/H5Goh.c
@@ -81,7 +81,8 @@ const H5O_obj_class_t H5O_OBJ_GROUP[1] = {{
H5O_group_open, /* open an object of this class */
H5O_group_create, /* create an object of this class */
H5O_group_get_oloc, /* get an object header location for an object */
- H5O_group_bh_info /* get the index & heap info for an object */
+ H5O_group_bh_info, /* get the index & heap info for an object */
+ NULL /* flush an opened object of this class */
}};
/* Declare the external free list to manage the H5O_ginfo_t struct */