Closed muscar closed 4 years ago
Oooh another __cxa_finalize crash. Points towards global destructors (hopefully not in malloc again :) ).
@ADKaster is there a previous issue around this I can have a look at?
LibGUI global destructors: https://github.com/SerenityOS/serenity/issues/900 Sergey fixing a hack I put in for global destructors in malloc.cpp https://github.com/SerenityOS/serenity/pull/1240
The solution is probably to add AK::NeverDestroyed
Thanks, I'll have a look.
HackStudio crashes when exiting. The relevant qemu log:
This looks like a double free somewhere in the
remove()
method in theHashTable
implementation, maybe in the lower level code for the linked lists which are used for buckets. I'd be happy to look into this later today or next week.