mirror of
https://github.com/TREX-CoE/trexio.git
synced 2024-12-23 12:56:53 +01:00
fix error handling in read_group_dset
This commit is contained in:
parent
c160de1a1b
commit
52e636f610
@ -1454,6 +1454,7 @@ trexio_read_$group_dset$ (trexio_t* const file, char* const dset, const uint32_t
|
|||||||
|
|
||||||
assert(file->back_end < TREXIO_INVALID_BACK_END);
|
assert(file->back_end < TREXIO_INVALID_BACK_END);
|
||||||
|
|
||||||
|
rc = TREXIO_FAILURE;
|
||||||
switch (file->back_end) {
|
switch (file->back_end) {
|
||||||
|
|
||||||
case TREXIO_TEXT:
|
case TREXIO_TEXT:
|
||||||
@ -1470,7 +1471,7 @@ trexio_read_$group_dset$ (trexio_t* const file, char* const dset, const uint32_t
|
|||||||
,*/
|
,*/
|
||||||
}
|
}
|
||||||
|
|
||||||
return TREXIO_SUCCESS;
|
return rc;
|
||||||
|
|
||||||
}
|
}
|
||||||
#+end_src
|
#+end_src
|
||||||
@ -1532,6 +1533,7 @@ trexio_write_$group_dset$ (trexio_t* const file, const char* dset, const uint32_
|
|||||||
tmp_str += max_str_len + 1;
|
tmp_str += max_str_len + 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
rc = TREXIO_FAILURE;
|
||||||
switch (file->back_end) {
|
switch (file->back_end) {
|
||||||
|
|
||||||
case TREXIO_TEXT:
|
case TREXIO_TEXT:
|
||||||
|
Loading…
Reference in New Issue
Block a user