summaryrefslogtreecommitdiffstats
path: root/src/H5FDcore.c
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2015-01-22 17:15:21 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2015-01-22 17:15:21 (GMT)
commit5eee1d7d7e352d90e0350f235b8066550a51f19b (patch)
tree5985bea338d90789ea6a3992b7c7171b7e4890b1 /src/H5FDcore.c
parenta24e3e5c8669fd205b75d264ca44e23fc1bfc651 (diff)
downloadhdf5-5eee1d7d7e352d90e0350f235b8066550a51f19b.zip
hdf5-5eee1d7d7e352d90e0350f235b8066550a51f19b.tar.gz
hdf5-5eee1d7d7e352d90e0350f235b8066550a51f19b.tar.bz2
[svn-r26002] move checks on reading/writing beyond file eoa outside of the file drivers and into a centralized place in H5FD_read/write.
tested h5committest.
Diffstat (limited to 'src/H5FDcore.c')
-rw-r--r--src/H5FDcore.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/H5FDcore.c b/src/H5FDcore.c
index d26b04f..ba4270e 100644
--- a/src/H5FDcore.c
+++ b/src/H5FDcore.c
@@ -1230,8 +1230,6 @@ H5FD_core_read(H5FD_t *_file, H5FD_mem_t UNUSED type, hid_t UNUSED dxpl_id, hadd
HGOTO_ERROR(H5E_IO, H5E_OVERFLOW, FAIL, "file address overflowed")
if (REGION_OVERFLOW(addr, size))
HGOTO_ERROR(H5E_IO, H5E_OVERFLOW, FAIL, "file address overflowed")
- if((addr + size) > file->eoa)
- HGOTO_ERROR(H5E_IO, H5E_OVERFLOW, FAIL, "file address overflowed")
/* Read the part which is before the EOF marker */
if (addr < file->eof) {
@@ -1290,8 +1288,6 @@ H5FD_core_write(H5FD_t *_file, H5FD_mem_t UNUSED type, hid_t UNUSED dxpl_id, had
/* Check for overflow conditions */
if(REGION_OVERFLOW(addr, size))
HGOTO_ERROR(H5E_IO, H5E_OVERFLOW, FAIL, "file address overflowed")
- if(addr + size > file->eoa)
- HGOTO_ERROR(H5E_IO, H5E_OVERFLOW, FAIL, "file address overflowed")
/*
* Allocate more memory if necessary, careful of overflow. Also, if the