From 18ba9f93bad5566ee6032deff61246f23fed0c42 Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Tue, 14 Sep 2004 22:14:18 -0500 Subject: [svn-r9260] Purpose: Bug fix Description: Correct leftover issue from recent changes to dataset region reference which occurred when 1.4 backward compatibility is turned on. Platforms tested: FreeBSD 4.10 (sleipnir) w/1.4 compat Configuration not tested by h5committest --- src/H5R.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/H5R.c b/src/H5R.c index 8a3c6ff..d79443d 100644 --- a/src/H5R.c +++ b/src/H5R.c @@ -663,7 +663,7 @@ H5R_get_object_type(H5F_t *file, hid_t dxpl_id, void *_ref) ent.file=file; /* Get the object oid */ - p=(uint8_t *)ref->oid; + p=(uint8_t *)ref; H5F_addr_decode(ent.file,(const uint8_t **)&p,&(ent.header)); /* Get the OID type */ -- cgit v0.12