Fix: app contexts: do not leak app context name, event field, context field
[lttng-ust.git] / liblttng-ust / lttng-bytecode-validator.c
index c5dc62729bcc1843467463eaffde240ab20b511c..267c5c19635a3ab56fe454ee80357c3fc1b60a7c 100644 (file)
@@ -17,6 +17,7 @@
 #include "lttng-hash-helper.h"
 #include "string-utils.h"
 #include "ust-events-internal.h"
+#include "ust-helper.h"
 
 /*
  * Number of merge points for hash table size. Hash table initialized to
@@ -208,7 +209,8 @@ error_type:
  * (unknown), negative error value on error.
  */
 static
-int bin_op_bitwise_check(struct vstack *stack, bytecode_opcode_t opcode,
+int bin_op_bitwise_check(struct vstack *stack,
+               bytecode_opcode_t opcode __attribute__((unused)),
                const char *str)
 {
        if (unlikely(!vstack_ax(stack) || !vstack_bx(stack)))
@@ -552,7 +554,8 @@ unsigned long delete_all_nodes(struct lttng_ust_lfht *ht)
  * <0: error
  */
 static
-int validate_instruction_context(struct bytecode_runtime *bytecode,
+int validate_instruction_context(
+               struct bytecode_runtime *bytecode __attribute__((unused)),
                struct vstack *stack,
                char *start_pc,
                char *pc)
@@ -1253,7 +1256,7 @@ int validate_instruction_all_contexts(struct bytecode_runtime *bytecode,
  * <0: error
  */
 static
-int exec_insn(struct bytecode_runtime *bytecode,
+int exec_insn(struct bytecode_runtime *bytecode __attribute__((unused)),
                struct lttng_ust_lfht *merge_points,
                struct vstack *stack,
                char **_next_pc,
@@ -1975,7 +1978,7 @@ int lttng_bytecode_validate(struct bytecode_runtime *bytecode)
                        goto end;
                }
                dbg_printf("Validating op %s (%u)\n",
-                       print_op((unsigned int) *(bytecode_opcode_t *) pc),
+                       lttng_bytecode_print_op((unsigned int) *(bytecode_opcode_t *) pc),
                        (unsigned int) *(bytecode_opcode_t *) pc);
 
                /*
This page took 0.024106 seconds and 4 git commands to generate.