diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-04-01 22:02:55 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-04-01 22:02:55 (GMT) |
commit | 26cc88d402ba6d0b9a086a4cd19420e337977d03 (patch) | |
tree | 6d1f8f06a00b237f9a414d7da52749ecea00e108 /src/H5FPserver.c | |
parent | 243775d9cd13602067ce7f28a6088107428d94dc (diff) | |
download | hdf5-26cc88d402ba6d0b9a086a4cd19420e337977d03.zip hdf5-26cc88d402ba6d0b9a086a4cd19420e337977d03.tar.gz hdf5-26cc88d402ba6d0b9a086a4cd19420e337977d03.tar.bz2 |
[svn-r6557] Purpose:
Bug Fix
Description:
Was using the wrong pointer into a structure...
Solution:
Used the correct pointer to get the file_id...
Platforms tested:
Modi4
Misc. update:
Diffstat (limited to 'src/H5FPserver.c')
-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 a46e651..3e211e5 100644 --- a/src/H5FPserver.c +++ b/src/H5FPserver.c @@ -1485,7 +1485,7 @@ H5FP_sap_handle_alloc_request(H5FP_request_t *req) FUNC_ENTER_NOINIT(H5FP_sap_handle_alloc_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.mem_type = req->mem_type; |