summaryrefslogtreecommitdiffstats
path: root/src/H5FD.c
diff options
context:
space:
mode:
authorRaymond Lu <songyulu@hdfgroup.org>2005-06-14 20:37:04 (GMT)
committerRaymond Lu <songyulu@hdfgroup.org>2005-06-14 20:37:04 (GMT)
commit162b19cd6c1f6c6b14254c60b83bd14b1c11184c (patch)
tree2185b176ed9612511bb749fd1db4de2779278724 /src/H5FD.c
parent3344dd72ed167f95add9ed58da70e03ca336c2a4 (diff)
downloadhdf5-162b19cd6c1f6c6b14254c60b83bd14b1c11184c.zip
hdf5-162b19cd6c1f6c6b14254c60b83bd14b1c11184c.tar.gz
hdf5-162b19cd6c1f6c6b14254c60b83bd14b1c11184c.tar.bz2
[svn-r10919] Purpose: Take Out An Unused Function
Description: Data conversion function H5T_conv_i32le_f64le() was unused. Because we have new conversion functions for integers and floating numbers, this old function is taken out. Platforms tested: fuss - simple change. Misc. update:
Diffstat (limited to 'src/H5FD.c')
-rw-r--r--src/H5FD.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/H5FD.c b/src/H5FD.c
index 1abe23a..599f73c 100644
--- a/src/H5FD.c
+++ b/src/H5FD.c
@@ -2937,6 +2937,7 @@ H5FDset_eoa(H5FD_t *file, haddr_t addr)
/* Check args */
if (!file || !file->cls)
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid file pointer")
+
if (!H5F_addr_defined(addr) || addr>file->maxaddr)
HGOTO_ERROR(H5E_ARGS, H5E_BADVALUE, FAIL, "invalid end-of-address value")