Crash on delete

What can be probable causes for crashing rack on deletion of a module?

Duplicate delete.

No need to guess. Use a debugger.

2 Likes

I like to guess… :smiley:

you have a global object, created one time (in singleton way) that is destroyed on exit of your first deleted module and your crash is happening on deleting your second module (a duplicate delete as @stoermelder is saying)

I’ll have to digest that a bit. Thanks @synthi