* src/thread.c (run_thread): Do not igc_xfree handlers on macOS/arm64

This commit is contained in:
Gerd Möllmann 2026-02-07 14:30:18 +01:00 committed by Óscar Fuentes
parent dc87175c50
commit 1ca778c86c

View file

@ -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
}