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

Added new H5E with tests. #4049

Merged
merged 33 commits into from
Mar 7, 2024
Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
2382f4e
new fortran H5E APIs
brtnfld Feb 9, 2024
9746295
Committing clang-format changes
github-actions[bot] Feb 9, 2024
eab3e07
new fortran H5E APIs
brtnfld Feb 9, 2024
e475b0f
fixed H5Eget_minor
brtnfld Feb 9, 2024
7f76e1c
Committing clang-format changes
github-actions[bot] Feb 9, 2024
b066b33
new API
brtnfld Feb 14, 2024
4657440
Merge branch 'develop' into gh3987
brtnfld Feb 15, 2024
4d3d7c6
H5Eget_msg
brtnfld Feb 16, 2024
b79e09e
added testing
brtnfld Feb 16, 2024
c287ec7
added testing
brtnfld Feb 16, 2024
c965f44
misc. fixes
brtnfld Feb 16, 2024
9df38de
Committing clang-format changes
github-actions[bot] Feb 16, 2024
daa96c2
added testing
brtnfld Feb 16, 2024
6dcff85
added more functions
brtnfld Feb 17, 2024
92bc43c
misc
brtnfld Feb 17, 2024
5705b33
misc2
brtnfld Feb 17, 2024
63a9115
misc3
brtnfld Feb 17, 2024
3861b97
debugging
brtnfld Feb 20, 2024
d3c701f
created new stack
brtnfld Feb 20, 2024
e6afa47
H5Eprint re-work
brtnfld Feb 23, 2024
0ed3b61
Committing clang-format changes
github-actions[bot] Feb 23, 2024
8672d31
H5Eprint re-work
brtnfld Feb 23, 2024
aadb14a
H5Eprint re-work
brtnfld Feb 23, 2024
d0dbc9b
completed testing
brtnfld Feb 23, 2024
9627f9b
H5Eset_auto test
brtnfld Feb 26, 2024
0233cba
updated Release notes
brtnfld Feb 26, 2024
64cf63d
Merge branch 'develop' into gh3987
brtnfld Feb 26, 2024
dd02654
revert
brtnfld Feb 26, 2024
c800073
corrected const
brtnfld Feb 26, 2024
74f258c
Committing clang-format changes
github-actions[bot] Feb 26, 2024
3720bf7
space clean-up
brtnfld Feb 26, 2024
91eb08d
updated release notes
brtnfld Feb 26, 2024
934b271
updated Release notes
brtnfld Mar 6, 2024
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
Prev Previous commit
Next Next commit
Committing clang-format changes
  • Loading branch information
github-actions[bot] committed Feb 23, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 0ed3b616a83c59a1f1e111b3af51d1c34c438c83
12 changes: 6 additions & 6 deletions fortran/src/H5Ef.c
Original file line number Diff line number Diff line change
@@ -43,18 +43,18 @@ h5eprint_c(hid_t_f *err_stack, _fcd name, size_t_f *namelen)
char *c_name = NULL;
int_f ret_value = 0;

if( namelen ) {
if (NULL == (c_name = (char *)HD5f2cstring(name, (size_t)*namelen)))
HGOTO_DONE(FAIL);
if (NULL == (file = fopen(c_name, "a")))
HGOTO_DONE(FAIL);
if (namelen) {
if (NULL == (c_name = (char *)HD5f2cstring(name, (size_t)*namelen)))
HGOTO_DONE(FAIL);
if (NULL == (file = fopen(c_name, "a")))
HGOTO_DONE(FAIL);
}

/*
* Call H5Eprint2 function.
*/
if (H5Eprint2((hid_t)*err_stack, file) < 0)
HGOTO_DONE(FAIL);
HGOTO_DONE(FAIL);

done:
if (file)