diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-11-02 20:48:45 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-11-02 20:48:45 (GMT) |
commit | 95b960a4a030844bfd04077f3c344895a1d71dbb (patch) | |
tree | 490d6cac42e4dbb08aec97e46c1ce19b5ec47c49 /src/H5Dcontig.c | |
parent | d5d2bffc3f29103a9b09791c092f026bcac5586f (diff) | |
download | hdf5-95b960a4a030844bfd04077f3c344895a1d71dbb.zip hdf5-95b960a4a030844bfd04077f3c344895a1d71dbb.tar.gz hdf5-95b960a4a030844bfd04077f3c344895a1d71dbb.tar.bz2 |
[svn-r2793] Purpose:
Bug Fix
Description:
Some of the HRETURN types were incorrect. They were NULL when
they should have been FAIL.
Solution:
Changed the NULLs to FAILs.
Platforms tested:
Linux
Diffstat (limited to 'src/H5Dcontig.c')
-rw-r--r-- | src/H5Dcontig.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/H5Dcontig.c b/src/H5Dcontig.c index a93e410..ccd6860 100644 --- a/src/H5Dcontig.c +++ b/src/H5Dcontig.c @@ -120,7 +120,7 @@ H5F_contig_read(H5F_t *f, H5FD_mem_t type, haddr_t addr, hsize_t size, hid_t dxp /* Make certain we don't read off the end of the file */ if (HADDR_UNDEF==(eoa=H5FD_get_eoa(f->shared->lf))) { - HRETURN_ERROR(H5E_FILE, H5E_CANTOPENFILE, NULL, + HRETURN_ERROR(H5E_FILE, H5E_CANTOPENFILE, FAIL, "unable to determine file size"); } f->shared->sieve_size=MIN(eoa-addr,f->shared->sieve_buf_size); @@ -151,7 +151,7 @@ H5F_contig_read(H5F_t *f, H5FD_mem_t type, haddr_t addr, hsize_t size, hid_t dxp else { /* Allocate room for the data sieve buffer */ if (NULL==(f->shared->sieve_buf=H5MM_malloc(f->shared->sieve_buf_size))) { - HRETURN_ERROR(H5E_RESOURCE, H5E_NOSPACE, NULL, + HRETURN_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, "memory allocation failed"); } @@ -160,7 +160,7 @@ H5F_contig_read(H5F_t *f, H5FD_mem_t type, haddr_t addr, hsize_t size, hid_t dxp /* Make certain we don't read off the end of the file */ if (HADDR_UNDEF==(eoa=H5FD_get_eoa(f->shared->lf))) { - HRETURN_ERROR(H5E_FILE, H5E_CANTOPENFILE, NULL, + HRETURN_ERROR(H5E_FILE, H5E_CANTOPENFILE, FAIL, "unable to determine file size"); } f->shared->sieve_size=MIN(eoa-addr,f->shared->sieve_buf_size); @@ -290,7 +290,7 @@ H5F_contig_write(H5F_t *f, H5FD_mem_t type, haddr_t addr, hsize_t size, /* Make certain we don't read off the end of the file */ if (HADDR_UNDEF==(eoa=H5FD_get_eoa(f->shared->lf))) { - HRETURN_ERROR(H5E_FILE, H5E_CANTOPENFILE, NULL, + HRETURN_ERROR(H5E_FILE, H5E_CANTOPENFILE, FAIL, "unable to determine file size"); } f->shared->sieve_size=MIN(eoa-addr,f->shared->sieve_buf_size); @@ -322,7 +322,7 @@ H5F_contig_write(H5F_t *f, H5FD_mem_t type, haddr_t addr, hsize_t size, else { /* Allocate room for the data sieve buffer */ if (NULL==(f->shared->sieve_buf=H5MM_malloc(f->shared->sieve_buf_size))) { - HRETURN_ERROR(H5E_RESOURCE, H5E_NOSPACE, NULL, + HRETURN_ERROR(H5E_RESOURCE, H5E_NOSPACE, FAIL, "memory allocation failed"); } @@ -331,7 +331,7 @@ H5F_contig_write(H5F_t *f, H5FD_mem_t type, haddr_t addr, hsize_t size, /* Make certain we don't read off the end of the file */ if (HADDR_UNDEF==(eoa=H5FD_get_eoa(f->shared->lf))) { - HRETURN_ERROR(H5E_FILE, H5E_CANTOPENFILE, NULL, + HRETURN_ERROR(H5E_FILE, H5E_CANTOPENFILE, FAIL, "unable to determine file size"); } f->shared->sieve_size=MIN(eoa-addr,f->shared->sieve_buf_size); |