Files
falco/userspace
Leonardo Grasso 26daebb1a9 fix(userspace): replace strerror() with thread-safe strerror_r()
strerror() returns a pointer to a shared static buffer, making it
unsafe when called concurrently from different threads. Replace all
call sites with strerror_r() using stack-local buffers, consistent
with the existing pattern in create_signal_handlers.cpp.

Signed-off-by: Leonardo Grasso <me@leonardograsso.com>
2026-04-09 16:56:58 +02:00
..