From ee40da82dfea0e32621afa181acaf99e73eff534 Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Fri, 29 Aug 1997 17:38:35 -0500 Subject: [svn-r57] Fixed bug in "reserved" atoms code which was not actually reserving the atoms. :-) --- src/H5A.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/H5A.c b/src/H5A.c index b7c562b..81660a5 100644 --- a/src/H5A.c +++ b/src/H5A.c @@ -146,7 +146,7 @@ intn H5Ainit_group(group_t grp, /* IN: Group to initialize */ grp_ptr->reserved=reserved; grp_ptr->wrapped=0; grp_ptr->atoms=0; - grp_ptr->nextid=0; + grp_ptr->nextid=reserved; if((grp_ptr->atom_list=(atom_info_t **)HDcalloc(hash_size,sizeof(atom_info_t *)))==NULL) HGOTO_DONE(FAIL); } /* end if */ -- cgit v0.12