diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2012-03-15 20:53:14 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2012-03-15 20:53:14 (GMT) |
commit | b337ae979dad938f1ef72df4f67b612a883040b1 (patch) | |
tree | 97bbd651a366c406bb7a22bde36f37f7448dc550 /src/H5HF.c | |
parent | 207c05e2e9f1c2844416c19fe5b74b2d71610fd1 (diff) | |
download | hdf5-b337ae979dad938f1ef72df4f67b612a883040b1.zip hdf5-b337ae979dad938f1ef72df4f67b612a883040b1.tar.gz hdf5-b337ae979dad938f1ef72df4f67b612a883040b1.tar.bz2 |
[svn-r22076] #Issue 7922 - H5Pset_data_transform had seg fault with some operations like x*-100.
The parser mistaked "-" as substraction. I fixed it and also fixed another problem
with some special cases like 100-x and 2/x.
Tested on jam, koala, and ostrich.
Diffstat (limited to 'src/H5HF.c')
-rw-r--r-- | src/H5HF.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -361,6 +361,7 @@ H5HF_insert(H5HF_t *fh, hid_t dxpl_id, size_t size, const void *obj, herr_t ret_value = SUCCEED; FUNC_ENTER_NOAPI(FAIL) + #ifdef QAK HDfprintf(stderr, "%s: size = %Zu\n", FUNC, size); #endif /* QAK */ |