Fix: syscall event rule: emission sites not compared in is_equal
[lttng-tools.git] / src / common / event-rule / kernel-syscall.cpp
index 23a432aacaaff285e6f0e3cb735d8cb1b4b3f26a..933c3543fcc155d5e74e3310089397155d9d4a76 100644 (file)
@@ -133,6 +133,10 @@ static bool lttng_event_rule_kernel_syscall_is_equal(const struct lttng_event_ru
                goto end;
        }
 
+       if (a->emission_site != b->emission_site) {
+               goto end;
+       }
+
        is_equal = true;
 end:
        return is_equal;
This page took 0.0228 seconds and 4 git commands to generate.