From c17ec107bb9d3afd99774e66fba2a6c8f8ca5142 Mon Sep 17 00:00:00 2001 From: myang6 Date: Wed, 20 Oct 2021 08:59:16 -0500 Subject: Still need to support the NULL pointer in the log report function. --- src/H5Fvfd_swmr.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/H5Fvfd_swmr.c b/src/H5Fvfd_swmr.c index 378fd82..ee9ccda 100644 --- a/src/H5Fvfd_swmr.c +++ b/src/H5Fvfd_swmr.c @@ -1921,6 +1921,10 @@ H5F_post_vfd_swrm_log_entry(H5F_t *f, int entry_type_code, char *body) unsigned int elap_min, elap_sec, elap_msec; FUNC_ENTER_NOAPI(FAIL) +#if 0 + HDassert(f); + HDassert(f->shared); +#endif if (f == NULL) HGOTO_DONE(TRUE) else if (f->shared == NULL) -- cgit v0.12