diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/H5M.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -279,12 +279,15 @@ done: --------------------------------------------------------------------------*/ hatom_t H5Maccess(hatom_t oid) { - group_t group=H5Aatom_group(oid); /* Atom group for incoming object */ + group_t group; intn i; /* local counting variable */ hatom_t ret_value = SUCCEED; FUNC_ENTER(H5Maccess, H5M_init_interface, FAIL); + /* Atom group for incoming object */ + group = H5Aatom_group (oid); + /* Clear errors and check args and all the boring stuff. */ H5ECLEAR; if(group<=BADGROUP || group>=MAXGROUP) |