Fix: segmentation fault on filter interpretation in "switch" mode
[lttng-ust.git] / src / lib / lttng-ust / lttng-bytecode-interpreter.c
index 7f19e981a2d6373c54ab2df3e06fd3d5a7887e51..89ad1f92eb06d4ae1afc421beadb22d79827fc0d 100644 (file)
@@ -166,7 +166,7 @@ int lttng_bytecode_interpret_error(
  */
 
 #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.023887 seconds and 4 git commands to generate.