mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[svn-r1190] moved some of the code around to fix a crash in the dll version of the test.
All changes were surrounded #ifdef _HDF5USEDLL
This commit is contained in:
parent
1991756aec
commit
924cb75ba8
@ -367,8 +367,13 @@ ragged_read_all(hid_t ra, hsize_t rows_at_once)
|
||||
goto error;
|
||||
}
|
||||
}
|
||||
#ifndef _HDF5USEDLL_
|
||||
/*
|
||||
For NT dll version we free memory down at the bottom. crashed otherwise.
|
||||
*/
|
||||
free(buf[i]);
|
||||
buf[i] = NULL;
|
||||
#endif
|
||||
}
|
||||
|
||||
/* Print statistics? */
|
||||
@ -418,6 +423,16 @@ ragged_read_all(hid_t ra, hsize_t rows_at_once)
|
||||
printf(" %27s%10s\n", "", s);
|
||||
|
||||
/* Cleanup */
|
||||
#ifdef _HDF5USEDLL_
|
||||
/*
|
||||
Need to clean up the memory we allocated. Had to move this down here
|
||||
for NT. Crashing when it was up in the original location
|
||||
*/
|
||||
for (i = 0; i < rows_at_once && size[i]; i++){
|
||||
free(buf[i]);
|
||||
// buf[i] = NULL;
|
||||
}
|
||||
#endif
|
||||
free(size);
|
||||
free(buf);
|
||||
printf("%-70s PASSED\n\n", testname);
|
||||
|
Loading…
x
Reference in New Issue
Block a user