Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hdf5_1_14_5 updates #4892

Merged
merged 6 commits into from
Sep 28, 2024
Merged

Hdf5_1_14_5 updates #4892

merged 6 commits into from
Sep 28, 2024

Commits on Sep 19, 2024

  1. Configuration menu
    Copy the full SHA
    1639ef8 View commit details
    Browse the repository at this point in the history

Commits on Sep 27, 2024

  1. Configuration menu
    Copy the full SHA
    2e678c2 View commit details
    Browse the repository at this point in the history
  2. Fixed a memory leak from H5FL_blk_malloc (HDFGroup#4882)

    In H5F__accum_reset(), when H5F__accum_flush() failed, the freeing of
    f_sh->accum.buf was never reached, causing resource leak.
    
    @fortnern added the third argument to H5F__accum_reset() so we can free
    f_sh->accum.buf when we close the file, that is, when H5F__accum_reset()
    is called from the H5F__dest() route, and can leave the accumulator in place
    otherwise.
    bmribler authored and lrknox committed Sep 27, 2024
    Configuration menu
    Copy the full SHA
    d9b4a95 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    314f8f5 View commit details
    Browse the repository at this point in the history
  4. Fix an incorrect returned value by H5LTfind_dataset() (HDFGroup#4869)

    H5LTfind_dataset() returns true for non-existing datasets because it only compares up to the length of the searched string, such as "Day" vs "DayNight" (issue HDFGroupGH-4780).
    
    This PR applied the user's patch and added tests.
    bmribler authored and lrknox committed Sep 27, 2024
    Configuration menu
    Copy the full SHA
    752dda3 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    a3d4ba3 View commit details
    Browse the repository at this point in the history