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

Add RELEASE.txt note for compound conversion segfault fix #4175

Merged
merged 1 commit into from
Mar 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions release_docs/RELEASE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1121,6 +1121,15 @@ Bug Fixes since HDF5-1.14.0 release

The overflow was found by OSS-Fuzz https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=58658

- Fixed a segfault when using a user-defined conversion function between compound datatypes

During type info initialization for compound datatype conversion, the library checked if the
datatypes are subsets of one another in order to perform special conversion handling.
This check uses information that is only defined if a library conversion function is in use.
The library now skips this check for user-defined conversion functions.

Fixes Github issue #3840

Java Library
------------
- Fixed switch case 'L' block missing a break statement.
Expand Down