From aa50f30653a870de05838558763534cb1182c0a7 Mon Sep 17 00:00:00 2001 From: nhmall Date: Sat, 31 May 2025 07:11:36 -0400 Subject: [PATCH] free_nhfile() will already call init_nhfile() --- src/files.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/files.c b/src/files.c index c9e90562e..d91a85fc3 100644 --- a/src/files.c +++ b/src/files.c @@ -527,7 +527,6 @@ close_nhfile(NHFILE *nhfp) (void) fclose(nhfp->fplog); if (nhfp->fpdebug) (void) fclose(nhfp->fpdebug); - init_nhfile(nhfp); free_nhfile(nhfp); } @@ -572,7 +571,6 @@ viable_nhfile(NHFILE *nhfp) if (nhfp->fpdebug) (void) fclose(nhfp->fpdebug); } - init_nhfile(nhfp); free_nhfile(nhfp); nhfp = (NHFILE *) 0; }