mirror of
https://github.com/falcosecurity/falco.git
synced 2025-09-04 16:20:18 +00:00
fix(process_events): check the return value of open_live_inspector
Signed-off-by: Andrea Terzolo <andrea.terzolo@polito.it>
This commit is contained in:
@@ -335,7 +335,12 @@ application::run_result application::process_events()
|
|||||||
try
|
try
|
||||||
{
|
{
|
||||||
falco_logger::log(LOG_DEBUG, "Opening event source '" + source + "'\n");
|
falco_logger::log(LOG_DEBUG, "Opening event source '" + source + "'\n");
|
||||||
open_live_inspector(src_info->inspector, source);
|
res = open_live_inspector(src_info->inspector, source);
|
||||||
|
if (!res.success)
|
||||||
|
{
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
if (m_state->enabled_sources.size() == 1)
|
if (m_state->enabled_sources.size() == 1)
|
||||||
{
|
{
|
||||||
// optimization: with only one source we don't spawn additional threads
|
// optimization: with only one source we don't spawn additional threads
|
||||||
|
Reference in New Issue
Block a user