diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2019-01-24 15:42:19 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2019-01-24 15:42:19 (GMT) |
commit | 25cd1ab02b9ddaf58a4f5422f4ab4fde411e050a (patch) | |
tree | dab0b8eab46764c971dca746a84ebd120353c62f /src/H5E.c | |
parent | d584b233a571fcc9854a716590fd09bd9e9320c4 (diff) | |
download | hdf5-25cd1ab02b9ddaf58a4f5422f4ab4fde411e050a.zip hdf5-25cd1ab02b9ddaf58a4f5422f4ab4fde411e050a.tar.gz hdf5-25cd1ab02b9ddaf58a4f5422f4ab4fde411e050a.tar.bz2 |
Added test for HDFFV-10588
Platforms tested:
Linux/64 (jelly)
Linux/64 (platypus)
Darwin (osx1010test)
Diffstat (limited to 'src/H5E.c')
-rw-r--r-- | src/H5E.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1566,7 +1566,7 @@ H5Ewalk2(hid_t err_stack, H5E_direction_t direction, H5E_walk2_t stack_func, voi /* Walk the error stack */ op.vers = 2; op.u.func2 = stack_func; - if(H5E__walk(estack, direction, &op, client_data) < 0) + if((ret_value = H5E__walk(estack, direction, &op, client_data)) < 0) HERROR(H5E_ERROR, H5E_CANTLIST, "can't walk error stack"); done: |