From 1ca778c86c12bf7f1e670719e0905e6f506a0105 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gerd=20M=C3=B6llmann?= Date: Sat, 7 Feb 2026 14:30:18 +0100 Subject: [PATCH] * src/thread.c (run_thread): Do not igc_xfree handlers on macOS/arm64 --- src/thread.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/thread.c b/src/thread.c index d96500e2435..feb20ef5a7f 100644 --- a/src/thread.c +++ b/src/thread.c @@ -855,7 +855,9 @@ run_thread (void *state) #ifndef HAVE_MPS xfree (c); #else +#if !(defined DARWIN_OS && defined __arm64__) igc_xfree (c); +#endif #endif }