diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-06-13 20:11:38 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-06-13 20:11:38 (GMT) |
commit | 986f3352516ce62e401516d65a39dc27612abf8e (patch) | |
tree | da0a6215fddd3a7d7182993906f02eb8873ca834 /src/H5A.c | |
parent | 925f2ba71017081543f904a6a113055432693dab (diff) | |
download | hdf5-986f3352516ce62e401516d65a39dc27612abf8e.zip hdf5-986f3352516ce62e401516d65a39dc27612abf8e.tar.gz hdf5-986f3352516ce62e401516d65a39dc27612abf8e.tar.bz2 |
[svn-r8675] Purpose:
Code optimization
Description:
Using existing dataspace extent copying routine instead of duplicating the
code (more slowly).
Platforms tested:
Solaris 2.7 (arabica)
FreeBSD 4.10 (sleipnir) w/parallel
Too minor to require h5committest
Diffstat (limited to 'src/H5A.c')
-rw-r--r-- | src/H5A.c | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -1591,10 +1591,6 @@ H5A_close(H5A_t *attr) if(H5O_close(&(attr->ent))<0) HGOTO_ERROR(H5E_ATTR, H5E_CANTRELEASE, FAIL, "can't release object header info") -#ifndef LATER - /* Do something with the shared information? */ -#endif - H5MM_xfree(attr); done: |