1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-02 02:10:19 +02:00

Fix bogus assert in mmc.c:deactivate_mutator

This commit is contained in:
Andy Wingo 2025-05-16 22:01:06 +02:00
parent 2018a77f36
commit fbcdffdc62

View file

@ -1293,7 +1293,7 @@ gc_finish_for_thread(struct gc_mutator *mut) {
static void
deactivate_mutator(struct gc_heap *heap, struct gc_mutator *mut) {
GC_ASSERT(mut->next == NULL);
GC_ASSERT(mut->active);
nofl_allocator_finish(&mut->allocator, heap_nofl_space(heap));
if (GC_GENERATIONAL)
gc_field_set_writer_release_buffer(&mut->logger);