X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=liblttng-ust%2Flttng-bytecode-validator.c;h=ea86c5e75126b8e517e92893bb5ee87f26e7ba77;hb=65c48d6a4b532436c000f8b3b9b771cfe9c07491;hp=cbae3215690e70fd4651dca82f520258021f971f;hpb=bf617e2041b908520b7e167b3401f277c9d4b4d4;p=lttng-ust.git diff --git a/liblttng-ust/lttng-bytecode-validator.c b/liblttng-ust/lttng-bytecode-validator.c index cbae3215..ea86c5e7 100644 --- a/liblttng-ust/lttng-bytecode-validator.c +++ b/liblttng-ust/lttng-bytecode-validator.c @@ -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 @@ -255,11 +256,11 @@ int validate_get_symbol(struct bytecode_runtime *bytecode, const char *str, *str_limit; size_t len_limit; - if (sym->offset >= bytecode->p.bc->bc.len - bytecode->p.bc->bc.reloc_offset) + if (sym->offset >= bytecode->p.priv->bc->bc.len - bytecode->p.priv->bc->bc.reloc_offset) return -EINVAL; - 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; + 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; len_limit = str_limit - str; if (strnlen(str, len_limit) == len_limit) return -EINVAL;