Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | OESS-29 Update HD prefix and compare against develop | Allen Byrne | 2019-08-23 | 12 | -435/+435 | |
| | ||||||
* | Merge HD prefix and whitespace changes from develop | Allen Byrne | 2019-08-18 | 22 | -1184/+1226 | |
| | ||||||
* | Merge fixes and code reconciliation wit develop | Allen Byrne | 2019-08-05 | 7 | -105/+238 | |
| | ||||||
* | Cleanup when merging to other branches | Allen Byrne | 2019-07-30 | 14 | -179/+135 | |
| | ||||||
* | HDFFV-10845, 10529 and CMake changes from develop | Allen Byrne | 2019-07-24 | 30 | -2055/+696 | |
| | ||||||
* | Merge from develop, mostly HDFFV-10845 | Allen Byrne | 2019-07-12 | 3 | -15/+27 | |
| | ||||||
* | HDFFV-10581 Correct PDB files and debug naming. | Allen Byrne | 2019-07-09 | 1 | -1/+1 | |
| | ||||||
* | Merge pull request #1786 in HDFFV/hdf5 from ↵ | Dhvanil Popat | 2019-07-05 | 5 | -641/+8 | |
|\ | | | | | | | | | | | | | | | | | | | | | ~DPOPAT/hdf5:bugfix/HDFFV-10832_merge to hdf5_1_10 * commit 'c56b9846c5277271dd07900b884da1abf1c9c21f': Fixed name for 'Build HDF Tests' in CMake's libhdf5 settings Fixed options for CMake to correct names Added Tests/Tools to libhdf5.settings in cmake equivalent Minor fix in libhdf5.settings.in Squash commit of options to build tools and tests | |||||
| * | Squash commit of options to build tools and tests | Dhvanil Popat | 2019-06-25 | 5 | -641/+8 | |
| | | ||||||
* | | Merge parallel static fix from develop | Allen Byrne | 2019-06-27 | 2 | -237/+0 | |
|/ | ||||||
* | HDFFV-9407 Merge test addition from develop | Allen Byrne | 2019-06-25 | 3 | -1/+66 | |
| | ||||||
* | Add lib dir for testing plugins | Allen Byrne | 2019-06-21 | 5 | -0/+12 | |
| | ||||||
* | remove duplicated function | Allen Byrne | 2019-06-21 | 1 | -0/+4 | |
| | ||||||
* | HDFFV-10805 Merge SHARED ONLY option from develop | Allen Byrne | 2019-06-20 | 41 | -464/+777 | |
| | ||||||
* | CMake fixes | Allen Byrne | 2019-04-04 | 1 | -1/+1 | |
| | ||||||
* | HDFFV-10703 - Update CMake variable handling | Allen Byrne | 2019-02-21 | 16 | -152/+134 | |
| | ||||||
* | Update version on hdf5_1_10 branch to 1.10.6-snap0. | Larry Knox | 2019-02-18 | 1 | -7/+7 | |
| | ||||||
* | TRILAB-111 Update MPI CMake | Allen Byrne | 2019-02-13 | 2 | -10/+10 | |
| | ||||||
* | Refactor TIMEOUT values | Allen Byrne | 2019-02-06 | 1 | -1/+1 | |
| | ||||||
* | HDFFV-10697 Disable compression option if source unavailable | Allen Byrne | 2019-02-05 | 1 | -4/+2 | |
| | ||||||
* | Merge branch 'hdf5_1_10' of ↵ | Binh-Minh Ribler | 2019-01-31 | 1 | -9/+16 | |
|\ | | | | | | | https://bitbucket.hdfgroup.org/scm/~bmribler/hdf5_1_10_bmr into hdf5_1_10 | |||||
| * | Merge pull request #1480 in HDFFV/hdf5 from ↵ | Binh-Minh Ribler | 2019-01-28 | 1 | -1/+16 | |
| |\ | | | | | | | | | | | | | | | | | | | ~BMRIBLER/hdf5_1_10_bmr:hdf5_1_10 to hdf5_1_10 * commit '2880ef43eb03526e7d75551720547b85e66a3086': Fixed HDFFV-10578 | |||||
| * | | Fix CMake policy 54 warnings | Allen Byrne | 2019-01-18 | 1 | -9/+16 | |
| | | | ||||||
* | | | Fixed HDFFV-10586, HDFFV-10588, and HDFFV-10684 | Binh-Minh Ribler | 2019-01-31 | 1 | -2/+4 | |
| |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Description: HDFFV-10586 CVE-2018-17434 Divide by zero in h5repack_filters Added a check for zero value HDFFV-10588 CVE-2018-17437 Memory leak in H5O_dtype_decode_helper This is actually an Invalid read issue. It was found that the attribute name length in an attribute message was corrupted, which caused the buffer pointer to be advanced too far and later caused an invalid read. Added a check to detect attribute name and its length mismatch. The fix does not cover all cases, but it'll reduce the chance of this issue when a name length is corrupted or the attribute name is corrupted. HDFFV-10684 H5Ewalk does not stop until all errors in the stack are visited The test for HDFFV-10588 has revealed a bug in H5Ewalk. H5Ewalk did not stop midway even when the call back function returns H5_ITER_STOP. This is because a condition is missing from the for loops in H5E__walk causing the callback functions unable to stop until all the errors in the stack are iterated. Quincey advised on the final fix. In this fix, "status" is switched to "ret_value" and HGOTO_ERROR to HERROR, and the for loops won't continue when "ret_value" is not 0. Platforms tested: Linux/64 (jelly) Linux/64 (platypus) Darwin (osx1011test) | |||||
* | | Fixed HDFFV-10578 | Binh-Minh Ribler | 2019-01-15 | 1 | -1/+16 | |
|/ | | | | | | | | | | | Description: - HDFFV-10578 - CVE-2018-17234 Memory leak in H5O__chunk_deserialize() Actually, the leak was in h5tools_util. Applied Neil's fix. - Changed an assert to if/HGOTO_ERROR to fail gracefully. Platforms tested: Linux/64 (jelly) Linux/64 (platypus) Darwin (osx1010test) | |||||
* | HDFFV-10669 merge from develop | Allen Byrne | 2018-12-31 | 1 | -2/+2 | |
| | ||||||
* | Removed 'VOL' versions of FUNC_ENTER macros as well as empty functions | Dana Robinson | 2018-12-31 | 11 | -138/+102 | |
| | | | | orginally intended to support the full SWMR feature (from develop). | |||||
* | Merge CMake changes from develop | Allen Byrne | 2018-12-20 | 2 | -39/+74 | |
| | ||||||
* | Add H5I_INVALID_HID | Allen Byrne | 2018-12-15 | 1 | -1/+1 | |
| | ||||||
* | Tools cleanup | Allen Byrne | 2018-12-13 | 3 | -108/+80 | |
| | ||||||
* | HDFFV-10632 separate stderr and stdout in tests | Allen Byrne | 2018-12-13 | 82 | -293/+527 | |
| | ||||||
* | Moved fixes for incorrectly installed header files to 1.10. | Dana Robinson | 2018-12-06 | 1 | -12/+0 | |
| | ||||||
* | Renamed h5repart's -family_to_sec2 to -family_to_single. | Dana Robinson | 2018-11-23 | 4 | -28/+49 | |
| | ||||||
* | Fix target for commands | Allen Byrne | 2018-11-09 | 1 | -2/+2 | |
| | ||||||
* | TRILAB-82 fix coverity high-impact issues | Allen Byrne | 2018-11-08 | 18 | -576/+560 | |
| | ||||||
* | TRILABS: Merge CMake changes from develop | Allen Byrne | 2018-11-07 | 6 | -83/+95 | |
| | ||||||
* | Merge CMake changes from develop | Allen Byrne | 2018-10-23 | 1 | -1/+1 | |
| | | | Improved cross-compiling and toolchains | |||||
* | HDFFV-10594, 10332, 10531 | Allen Byrne | 2018-09-26 | 9 | -108/+126 | |
| | ||||||
* | Update version | Larry Knox | 2018-09-05 | 1 | -7/+7 | |
| | ||||||
* | Fix Java library location for testing | Allen Byrne | 2018-08-31 | 1 | -3/+0 | |
| | ||||||
* | Update system commands with HD prefix and whitespace | Allen Byrne | 2018-08-28 | 6 | -236/+236 | |
| | ||||||
* | Rearrange issues by date order | Jordan Henderson | 2018-08-09 | 1 | -7/+7 | |
| | | | | | Update version. Update .so versions to match 1.10.3. | |||||
* | Merge from develop | Allen Byrne | 2018-07-31 | 2 | -3/+3 | |
| | ||||||
* | Add swmr tests, fix java script | Allen Byrne | 2018-07-27 | 4 | -1/+422 | |
| | ||||||
* | Revert Sencode h5dump test | Allen Byrne | 2018-07-27 | 5 | -101/+0 | |
| | ||||||
* | Apply Cygwin pathches from Marco Atzeri. | Larry Knox | 2018-07-26 | 1 | -0/+2 | |
| | | | | Commit Joe Lee's typo corrections for src/H5MF.c. | |||||
* | Changes based on feedback from pull request. | Vailin Choi | 2018-07-26 | 2 | -3/+2 | |
| | ||||||
* | Modifications made based on feedback from pull request. | Vailin Choi | 2018-07-26 | 4 | -12/+31 | |
| | ||||||
* | Fix for HDFFV-10333: | Vailin Choi | 2018-07-26 | 16 | -132/+420 | |
| | | | | | | | | | 1) Check for valid object header version for a refcount messge 2) Check for invalid fill value size 3) Check for invalid dimension size in a layout message 4) Add --enable-error-stack option to h5stat 5) Add error checks to h5stat.c 6) Add tests to h5stat and h5dump | |||||
* | Merge branch 'develop' into hdf5_1_10.sync | M. Scot Breitenfeld | 2018-06-04 | 19 | -54/+740 | |
|\ |