From 1ef91dde93f6b02d96179fb88996399bc42ae7a8 Mon Sep 17 00:00:00 2001 From: Arran Cudbard-Bell Date: Mon, 28 Jul 2025 16:31:17 -0700 Subject: [PATCH] Don't call fr_bio_shutdown recursively --- src/lib/bio/fd.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/lib/bio/fd.c b/src/lib/bio/fd.c index bd15f95925..c7f6b4fd8a 100644 --- a/src/lib/bio/fd.c +++ b/src/lib/bio/fd.c @@ -1018,12 +1018,6 @@ int fr_bio_fd_close(fr_bio_t *bio) if (my->info.state == FR_BIO_FD_STATE_CLOSED) return 0; - /* - * Shut the bio down cleanly. - */ - rcode = fr_bio_shutdown(bio); - if (rcode < 0) return rcode; - my->bio.read = fr_bio_fail_read; my->bio.write = fr_bio_fail_write; -- 2.47.2