Skip to content

Alignment: fix annoying and longstanding issue with SIGABRT at pgoram end

Simon Spannagel requested to merge fix_aligncrash into master

Here we go.

Background:

We pre-link all libraries to the executable. Also, we have had two global objects with the same name in two different shared libraries. When closing the program, somehow the kernel thinks that both exist and tries to deallocate both despite the fact that one of them never was allocated. No idea why it confuses these things, but simply giving the different names solves this.

Yay!

Merge request reports