diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-12-29 19:34:11 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-12-29 19:34:11 (GMT) |
commit | 5db6c61f18198ac4477a6ba99d405ff82cf467a7 (patch) | |
tree | 4cf9ef4d947830f28f12d110148c3bfea6ff49e9 /src/H5FDsec2.c | |
parent | b6fd9f9d760dbe4e6ab530b12e0672088570224a (diff) | |
download | hdf5-5db6c61f18198ac4477a6ba99d405ff82cf467a7.zip hdf5-5db6c61f18198ac4477a6ba99d405ff82cf467a7.tar.gz hdf5-5db6c61f18198ac4477a6ba99d405ff82cf467a7.tar.bz2 |
[svn-r7993] Purpose:
Code cleanup, bug fixes
Description:
Wrap up rest of changes necessary for fixing the "short" MPI-I/O read
problem that Robb reported.
Platforms tested:
FreeBSD 4.9 (sleipnir)
too minor to require h5committest
Diffstat (limited to 'src/H5FDsec2.c')
-rw-r--r-- | src/H5FDsec2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5FDsec2.c b/src/H5FDsec2.c index 5b73475..5924c0a 100644 --- a/src/H5FDsec2.c +++ b/src/H5FDsec2.c @@ -682,7 +682,7 @@ H5FD_sec2_read(H5FD_t *_file, H5FD_mem_t UNUSED type, hid_t UNUSED dxpl_id, hadd if (0==nbytes) { /* end of file but not end of format address space */ HDmemset(buf, 0, size); - size = 0; + break; } assert(nbytes>=0); assert((size_t)nbytes<=size); |