diff options
Diffstat (limited to 'examples/h5_extlink.c')
-rw-r--r-- | examples/h5_extlink.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/examples/h5_extlink.c b/examples/h5_extlink.c index 15f76fb..bdd8b2f 100644 --- a/examples/h5_extlink.c +++ b/examples/h5_extlink.c @@ -414,10 +414,15 @@ UD_hard_create(const char *link_name, hid_t loc_group, const void *udata, size_t token = *((H5O_token_t *)udata); +//! [H5Open_by_token_snip] + /* Open the object this link points to so that we can increment * its reference count. This also ensures that the token passed * in points to a real object (although this check is not perfect!) */ target_obj = H5Oopen_by_token(loc_group, token); + +//! [H5Open_by_token_snip] + if (target_obj < 0) { ret_value = -1; goto done; |