diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-04-01 22:06:41 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-04-01 22:06:41 (GMT) |
commit | 5830c5cf9930b47611e115eaafdad4a8113477d2 (patch) | |
tree | 6b0464a557885cbd0d1b6a6b5f7b9b3e13ff962a /src | |
parent | 26cc88d402ba6d0b9a086a4cd19420e337977d03 (diff) | |
download | hdf5-5830c5cf9930b47611e115eaafdad4a8113477d2.zip hdf5-5830c5cf9930b47611e115eaafdad4a8113477d2.tar.gz hdf5-5830c5cf9930b47611e115eaafdad4a8113477d2.tar.bz2 |
[svn-r6558] Purpose:
Bug Fix...
Description:
The previous bug was in the _free function as well
Solution:
Used the correct structure
Platforms tested:
Modi4
Misc. update:
Diffstat (limited to 'src')
-rw-r--r-- | src/H5FPserver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5FPserver.c b/src/H5FPserver.c index 3e211e5..98c21c3 100644 --- a/src/H5FPserver.c +++ b/src/H5FPserver.c @@ -1548,7 +1548,7 @@ H5FP_sap_handle_free_request(H5FP_request_t *req) FUNC_ENTER_NOINIT(H5FP_sap_handle_free_request); sap_alloc.req_id = req->req_id; - sap_alloc.file_id = info->file_id; + sap_alloc.file_id = req->file_id; sap_alloc.status = H5FP_STATUS_OK; sap_alloc.addr = HADDR_UNDEF; |