I just fixed a "horrible" bug in #swad:
https://github.com/Zirias/poser/commit/fcd8f4eb44d9676dde2546042b5fe3165aecc52c
In case you don't understand C: This potentially dereferenced "wild" and null pointers before the (copy-and-pasted 馃檲) typo was fixed, which means it's "undefined behavior", so might do surprising things, but more likely crash.
It affects the #epoll (on #Linux) and #eventports (on #Solaris / #illumos) backends. A quick smoke test on these platforms was done in swad 0.11 and didn't show any unexpected behavior. Only after preparing for the next release (that hopefully has multiple parallel event loops) by moving some static service data to thread-local storage, it suddenly failed on illumos, that's how I tracked down that embarrasing crap. 馃槥
I hope to complete a new version soon enough, so I don't have to do a "bugfix release" for it.