mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-02-17 16:50:18 +08:00
re: github issue https://github.com/Unidata/netcdf-fortran/issues/82 This was originally discovered in the Fortran tests, but is a problem in the C library. The problem only occurred when using HDF5-1.10.x. The reason it failed is that starting with 1.10, the hid_t type was changed from 32 bits to 64 bits. The function libsrc4/nc4memcb.c#NC4_image_init was using type int (doh!) to return the hdf fileid instead of hid_t type. This, of course, caused the id to be truncated and in turn later use of the id caused hdf5 to fail. Fix is trivial: replace int with hid_t. This also requires a related change in nc4mem.c. Also added the test case derived from the original Fortran code. You would think I would learn... |
||
---|---|---|
.. | ||
bad_cdf5_begin.nc | ||
CMakeLists.txt | ||
error.c | ||
error.h | ||
f03tst_open_mem.nc | ||
large_files.c | ||
Make0 | ||
make_test_file.sh | ||
Makefile.am | ||
nc_enddef.cdl | ||
nc_sync.cdl | ||
nc_test.c | ||
nc_test.html | ||
quick_large_files.c | ||
ref_tst_diskless2.cdl | ||
run_cdf5.sh | ||
run_diskless2.sh | ||
run_diskless5.sh | ||
run_diskless.sh | ||
run_inmemory.sh | ||
run_mmap.sh | ||
run_pnetcdf_test.sh | ||
t_nc_p5.c | ||
t_nc.c | ||
test_get_p5.c | ||
test_get_p5.m4 | ||
test_get.m4 | ||
test_put.m4 | ||
test_read.m4 | ||
test_write.m4 | ||
testnc3perf.c | ||
tests.h | ||
tst_addvar.c | ||
tst_atts3.c | ||
tst_big_rvar.c | ||
tst_big_var2.c | ||
tst_big_var6.c | ||
tst_big_var.c | ||
tst_cdf5_begin.c | ||
tst_cdf5format.c | ||
tst_def_var_fill.c | ||
tst_diskless2.c | ||
tst_diskless3.c | ||
tst_diskless4.c | ||
tst_diskless5.c | ||
tst_diskless5.cdl | ||
tst_diskless.c | ||
tst_err_enddef.c | ||
tst_formats.c | ||
tst_formatx_pnetcdf.c | ||
tst_global_fillval.c | ||
tst_inmemory.c | ||
tst_inq_type.c | ||
tst_large_cdf5.c | ||
tst_large.c | ||
tst_max_var_dims.c | ||
tst_meta.c | ||
tst_misc.c | ||
tst_names.c | ||
tst_nofill2.c | ||
tst_nofill3.c | ||
tst_nofill.c | ||
tst_norm.c | ||
tst_open_cdf5.c | ||
tst_open_mem.c | ||
tst_parallel2.c | ||
tst_pnetcdf.c | ||
tst_small.c | ||
tst_utf8_phrases.c | ||
tst_utf8_validate.c | ||
util.c |