Skip to content

Commit

Permalink
Fix a issue with pool ptr
Browse files Browse the repository at this point in the history
  • Loading branch information
houjun committed Jul 26, 2023
1 parent 69222b0 commit 9a88edb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/h5_async_vol.c
Original file line number Diff line number Diff line change
Expand Up @@ -25674,8 +25674,8 @@ H5VL_async_request_wait(void *obj, uint64_t timeout, H5VL_request_status_t *stat
pool_ptr = task->async_obj->pool_ptr;
while (attempt--) {
if (task->async_obj && get_n_running_task_in_queue_obj(task->async_obj, __func__) == 0 &&
async_instance_g->qhead.queue && task->async_obj->pool_ptr) {
push_task_to_abt_pool(&async_instance_g->qhead, *task->async_obj->pool_ptr, __func__);
async_instance_g->qhead.queue && pool_ptr) {
push_task_to_abt_pool(&async_instance_g->qhead, *pool_ptr, __func__);

#ifdef ENABLE_DBG_MSG
if ((async_instance_g &&
Expand Down

0 comments on commit 9a88edb

Please sign in to comment.