summaryrefslogtreecommitdiffstats
path: root/test/file_image.c
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2012-04-09 18:17:26 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2012-04-09 18:17:26 (GMT)
commit551043293246eb39ed607c86fa22ff6adbf6d313 (patch)
tree4b4b4892e044fd91e72ecaebf2433f963bbb9758 /test/file_image.c
parentd1b5ec64328cfb49dad4f5b9207ce669425c3458 (diff)
downloadhdf5-551043293246eb39ed607c86fa22ff6adbf6d313.zip
hdf5-551043293246eb39ed607c86fa22ff6adbf6d313.tar.gz
hdf5-551043293246eb39ed607c86fa22ff6adbf6d313.tar.bz2
[svn-r22264] Use correct index for inserting null terminator
Tested: windows under debug
Diffstat (limited to 'test/file_image.c')
-rw-r--r--test/file_image.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/test/file_image.c b/test/file_image.c
index 7c2c3ff..a846a3c 100644
--- a/test/file_image.c
+++ b/test/file_image.c
@@ -108,7 +108,7 @@ test_properties(void)
buffer = (char *)HDmalloc(size);
for(i = 0; i < count - 1; i++)
buffer[i] = (char)(65 + i);
- buffer[count] = '\0';
+ buffer[count - 1] = '\0';
/* Create fapl */
if((fapl_1 = H5Pcreate(H5P_FILE_ACCESS)) < 0) FAIL_STACK_ERROR
@@ -324,7 +324,7 @@ static int
test_callbacks(void)
{
H5FD_file_image_callbacks_t real_callbacks = {&malloc_cb, &memcpy_cb, &realloc_cb,
- &free_cb, &udata_copy_cb, &udata_free_cb, NULL};
+ &free_cb, &udata_copy_cb, &udata_free_cb, NULL};
H5FD_file_image_callbacks_t null_callbacks = {NULL, NULL, NULL, NULL, NULL, NULL, NULL};
H5FD_file_image_callbacks_t callbacks;
hid_t fapl_1;
@@ -351,7 +351,7 @@ test_callbacks(void)
file_image = (char *)HDmalloc(size);
for(i = 0; i < count - 1; i++)
file_image[i] = (char)(65 + i);
- file_image[count] = '\0';
+ file_image[count - 1] = '\0';
/* Create fapl */
if((fapl_1 = H5Pcreate(H5P_FILE_ACCESS)) < 0) FAIL_STACK_ERROR
@@ -527,7 +527,7 @@ test_core(void)
h5_stat_t sb;
herr_t ret;
H5FD_file_image_callbacks_t callbacks = {&malloc_cb, &memcpy_cb, &realloc_cb,
- &free_cb, &udata_copy_cb, &udata_free_cb, NULL};
+ &free_cb, &udata_copy_cb, &udata_free_cb, NULL};
TESTING("Initial file image and callbacks in Core VFD");
@@ -786,10 +786,10 @@ test_get_file_image(const char * test_banner,
VERIFY(fd >= 0, "HDopen() failed.");
if(size_remaining >= FAMILY_SIZE ){
- bytes_to_read = FAMILY_SIZE;
+ bytes_to_read = FAMILY_SIZE;
size_remaining -= FAMILY_SIZE;
} else {
- bytes_to_read = size_remaining;
+ bytes_to_read = size_remaining;
size_remaining = 0;
}
@@ -816,7 +816,7 @@ test_get_file_image(const char * test_banner,
*/
file_size = (ssize_t)stat_buf.st_size;
- /* with latest mods to truncate call in core file drive,
+ /* with latest mods to truncate call in core file drive,
* file size should match image size
*/
VERIFY(file_size == image_size, "file size != image size.");
@@ -940,9 +940,9 @@ test_get_file_image_error_rejection(void)
* Since we have already done the necessary setup, verify that
* H5Fget_file_image() will fail with:
*
- * bad file id, or
+ * bad file id, or
*
- * good id, but not a file id
+ * good id, but not a file id
*/