From f4080ec23a0630bd3c5c37c853cd2528faec92c4 Mon Sep 17 00:00:00 2001 From: Helmut Eller Date: Sun, 30 Jun 2024 20:15:51 +0200 Subject: [PATCH 1/2] Fix igc_check_fwd * src/igc.c (igc_check_fwd): Add missing argument to has_header. --- src/igc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/igc.c b/src/igc.c index 324bcfa112f..2165a69cacf 100644 --- a/src/igc.c +++ b/src/igc.c @@ -598,7 +598,7 @@ alloc_hash (void) void igc_check_fwd (void *client) { - if (has_header (client)) + if (has_header (client, true)) { struct igc_header *h = client_to_base (client); igc_assert (h->obj_type != IGC_OBJ_FWD); -- 2.39.2