Fix: app contexts: do not leak app context name, event field, context field
[lttng-ust.git] / liblttng-ust / lttng-bytecode-validator.c
index b5bc49041c61c8d0ce115ffe9f365ccb2139a83b..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)))
@@ -255,11 +257,11 @@ int validate_get_symbol(struct bytecode_runtime *bytecode,
        const char *str, *str_limit;
        size_t len_limit;
 
-       if (sym->offset >= bytecode->p.priv->bc->bc.len - bytecode->p.priv->bc->bc.reloc_offset)
+       if (sym->offset >= bytecode->p.bc->bc.len - bytecode->p.bc->bc.reloc_offset)
                return -EINVAL;
 
-       str = bytecode->p.priv->bc->bc.data + bytecode->p.priv->bc->bc.reloc_offset + sym->offset;
-       str_limit = bytecode->p.priv->bc->bc.data + bytecode->p.priv->bc->bc.len;
+       str = bytecode->p.bc->bc.data + bytecode->p.bc->bc.reloc_offset + sym->offset;
+       str_limit = bytecode->p.bc->bc.data + bytecode->p.bc->bc.len;
        len_limit = str_limit - str;
        if (strnlen(str, len_limit) == len_limit)
                return -EINVAL;
@@ -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,
This page took 0.023996 seconds and 4 git commands to generate.