From 26cc88d402ba6d0b9a086a4cd19420e337977d03 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Tue, 1 Apr 2003 17:02:55 -0500 Subject: [PATCH] [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: --- src/H5FPserver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/H5FPserver.c b/src/H5FPserver.c index a46e6512c7..3e211e50ef 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;