diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2002-02-07 19:55:43 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2002-02-07 19:55:43 (GMT) |
commit | d8626dd40f82baf616134cfd179b894429fce501 (patch) | |
tree | 758ac46ad577c30b3a25df9345d4b7ee219af74e /src/H5P.c | |
parent | dd0ecaa64343411cc7538e891cf1d26be53d0528 (diff) | |
download | hdf5-d8626dd40f82baf616134cfd179b894429fce501.zip hdf5-d8626dd40f82baf616134cfd179b894429fce501.tar.gz hdf5-d8626dd40f82baf616134cfd179b894429fce501.tar.bz2 |
[svn-r4920] Purpose:
Bug fix
Description:
Correct inefficient property copying when using derived property list
classes.
Platforms tested:
FreeBSD 4.5 (sleipnir)
Diffstat (limited to 'src/H5P.c')
-rw-r--r-- | src/H5P.c | 29 |
1 files changed, 2 insertions, 27 deletions
@@ -4759,31 +4759,6 @@ H5P_create_class(H5P_genclass_t *par_class, const char *name, unsigned hashsize, if(par_class!=NULL) { if(H5P_access_class(par_class,H5P_MOD_INC_CLS)<0) HGOTO_ERROR (H5E_PLIST, H5E_CANTINIT, NULL,"Can't increment parent class ref count"); - - /* Copy parent class's properties into this new class */ - if(par_class->nprops>0) { - /* Walk through the hash table */ - for(u=0; u<par_class->hashsize; u++) { - tmp=par_class->props[u]; - - /* Walk through the list of properties at each hash location */ - while(tmp!=NULL) { - /* Make a copy of the class's property */ - if((pcopy=H5P_dup_prop(tmp))==NULL) - HGOTO_ERROR (H5E_PLIST, H5E_CANTCOPY, NULL,"Can't copy property"); - - /* Insert the initialized property into the property list */ - if(H5P_add_prop(pclass->props,pclass->hashsize,pcopy)<0) - HGOTO_ERROR (H5E_PLIST, H5E_CANTINSERT, NULL,"Can't insert property into class"); - - /* Increment property count for class */ - pclass->nprops++; - - /* Go to next registered property in class */ - tmp=tmp->next; - } /* end while */ - } /* end for */ - } /* end if */ } /* end if */ /* Set return value */ @@ -4946,7 +4921,7 @@ static H5P_genplist_t *H5P_create(H5P_genclass_t *pclass) /* Walk through the list of properties at each hash location */ while(tmp!=NULL) { /* Check for property already existing in list */ - if(H5P_find_prop(plist->props,tclass->hashsize,tmp->name)==NULL) { + if(H5P_find_prop(plist->props,pclass->hashsize,tmp->name)==NULL) { /* Make a copy of the class's property */ if((pcopy=H5P_dup_prop(tmp))==NULL) HGOTO_ERROR (H5E_PLIST, H5E_CANTCOPY, NULL,"Can't copy property"); @@ -4973,7 +4948,7 @@ static H5P_genplist_t *H5P_create(H5P_genclass_t *pclass) } /* end if */ /* Insert the initialized property into the property list */ - if(H5P_add_prop(plist->props,tclass->hashsize,pcopy)<0) + if(H5P_add_prop(plist->props,pclass->hashsize,pcopy)<0) HGOTO_ERROR (H5E_PLIST, H5E_CANTINSERT, NULL,"Can't insert property into class"); /* Increment the number of properties in list */ |