Skip to content

Commit

Permalink
Bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
Manuel Bischof committed May 5, 2023
1 parent 2e81683 commit ebb1bcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/apitracing/src/lib/Tracer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ namespace ApiTracing
return true;
}
// TODO this fucks up because there is no tracing definition for this process
if (tracedProcesses.contains(processInformation.parentPid))
if (tracedProcesses.empty() || tracedProcesses.contains(processInformation.parentPid))
{
return false; // TODO evaluate trace childs and find a way to define which processTracingConfig should be
// used
Expand Down

0 comments on commit ebb1bcf

Please sign in to comment.