Fix the last C++ stack size warning (#4099)

This commit is contained in:
Dana Robinson 2024-03-09 09:05:37 -08:00 committed by GitHub
parent 3d09a7d5f6
commit d4c84f8d0a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -140,7 +140,6 @@ static void
test_szip_filter(H5File &file1)
{
#ifdef H5_HAVE_FILTER_SZIP
int points[DSET_DIM1][DSET_DIM2], check[DSET_DIM1][DSET_DIM2];
unsigned szip_options_mask = H5_SZIP_NN_OPTION_MASK;
unsigned szip_pixels_per_block = 4;
@ -149,6 +148,8 @@ test_szip_filter(H5File &file1)
if (h5_szip_can_encode() == 1) {
char *tconv_buf = new char[1000];
auto points = new int[DSET_DIM1][DSET_DIM2];
auto check = new int[DSET_DIM1][DSET_DIM2];
try {
const hsize_t size[2] = {DSET_DIM1, DSET_DIM2};
@ -201,6 +202,8 @@ test_szip_filter(H5File &file1)
}
delete[] tconv_buf;
delete[] points;
delete[] check;
} // if szip presents
else {
SKIPPED();