[svn-r231] Purpose: Fix a bug.

Problem: Data type handle was not released.

Solution: Call to H5Tclose has been added.

Platforms tested: Sun Sparc (baldric)
This commit is contained in:
Elena Pourmal 1998-02-09 16:10:28 -05:00
parent 7e8e3eec42
commit 4c2346ff5d

View File

@ -71,8 +71,9 @@ status = H5Dwrite(dataset, H5T_NATIVE_INT, H5P_ALL, H5P_ALL,
/*
* Close/release resources.
*/
H5Dclose(dataset);
H5Pclose(dataspace);
H5Tclose(datatype);
H5Dclose(dataset);
H5Fclose(file);
}