summaryrefslogtreecommitdiffstats
path: root/src/H5Gnode.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2007-07-17 21:04:44 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2007-07-17 21:04:44 (GMT)
commit814ad1cb42a824fc5a0b0b4d675aa7b4c6caec4c (patch)
treec02814849855790343ad1c2b421c73b3eaaf270d /src/H5Gnode.c
parent4be636f4f00271f85802fbb6ef079146f2dbf7fb (diff)
downloadhdf5-814ad1cb42a824fc5a0b0b4d675aa7b4c6caec4c.zip
hdf5-814ad1cb42a824fc5a0b0b4d675aa7b4c6caec4c.tar.gz
hdf5-814ad1cb42a824fc5a0b0b4d675aa7b4c6caec4c.tar.bz2
[svn-r13986] Description:
Add flag to bypass (expensive) B-tree & heap size retrieval for internal calls to H5O_get_info(). Teted on: Mac OS X/32 10.4.10 (amazon) FreeBSD/32 6.2 (duty)
Diffstat (limited to 'src/H5Gnode.c')
-rw-r--r--src/H5Gnode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Gnode.c b/src/H5Gnode.c
index 5aa64c5..a1884ac 100644
--- a/src/H5Gnode.c
+++ b/src/H5Gnode.c
@@ -1785,7 +1785,7 @@ H5G_node_copy(H5F_t *f, hid_t dxpl_id, const void UNUSED *_lt_key, haddr_t addr,
link_name = (char *)H5HL_offset_into(f, heap, tmp_src_ent.cache.slink.lval_offset);
/* Check if the object pointed by the soft link exists in the source file */
- if(H5G_loc_info(&grp_loc, link_name, &oinfo, H5P_DEFAULT, dxpl_id) >= 0) {
+ if(H5G_loc_info(&grp_loc, link_name, FALSE, &oinfo, H5P_DEFAULT, dxpl_id) >= 0) {
tmp_src_ent.header = oinfo.addr;
src_ent = &tmp_src_ent;
} /* end if */