mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-02-17 16:10:24 +08:00
[svn-r22693] Add missing H5Tclose().
This commit is contained in:
parent
bb11cbee94
commit
60dc75f4f4
@ -564,7 +564,7 @@ herr_t H5IMlink_palette( hid_t loc_id,
|
||||
/* close */
|
||||
if(H5Sclose(asid) < 0)
|
||||
goto out;
|
||||
if ( H5Tclose( atid ) < 0)
|
||||
if(H5Tclose(atid) < 0)
|
||||
goto out;
|
||||
if(H5Aclose(aid) < 0)
|
||||
goto out;
|
||||
@ -630,6 +630,8 @@ herr_t H5IMlink_palette( hid_t loc_id,
|
||||
/* close */
|
||||
if(H5Sclose(asid) < 0)
|
||||
goto out;
|
||||
if(H5Tclose(atid) < 0)
|
||||
goto out;
|
||||
if(H5Aclose(aid) < 0)
|
||||
goto out;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user