Fix: segmentation fault on filter interpretation in "switch" mode
[lttng-ust.git] / liblttng-ust / lttng-filter-interpreter.c
index d558b6b2be26ce8feec1a941f6080b76074baec2..f991ebb7ed95d9956e9ec523308067684243cae5 100644 (file)
@@ -173,7 +173,7 @@ uint64_t lttng_filter_false(void *filter_data,
  */
 
 #define START_OP                                                       \
-       start_pc = &bytecode->data[0];                                  \
+       start_pc = &bytecode->code[0];                                  \
        for (pc = next_pc = start_pc; pc - start_pc < bytecode->len;    \
                        pc = next_pc) {                                 \
                dbg_printf("Executing op %s (%u)\n",                    \
This page took 0.024663 seconds and 4 git commands to generate.