mirror of
https://github.com/falcosecurity/falco.git
synced 2026-04-11 14:32:55 +00:00
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>